I checked the documentation and tried to find some answers in stackoverflow and in here but couldn't find any. Sorry if it is duplicate.

Redis [QUESTION] which commands do not change the object idletime ?

As you may see in the screenshot; TTL command does not change the idletime of object but GET changes. Are there a list of commands that do not change the idletime ?

Thanks

Comment From: oranagra

I'm not aware of any such list. the way to find that out, is to grep for LOOKUP_NOTOUCH in the code. what i could find is EXISTS, TYPE, TTL, OBJECT

Note that in some past versions, grepping for dictFind(c->db->dict and dictFind(db->dict could have found some of these (before LOOKUP_NOTOUCH was more widely used)