Closed alinagrishchuk closed 3 years ago
According to redis changelog:
exists
exists?
So, starting from version 4.2 we can safely use Redis#exists? instead of Redis#exist
Redis#exists?
Redis#exist
Changes
According to redis changelog:
exists
method is going to change its behaviour to return an Integer value instead of Booleanexists?
method was added to get a Boolean if any of the keys existSo, starting from version 4.2 we can safely use
Redis#exists?
instead ofRedis#exist
Changes