You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but it would be nice to have a proper keys method to search things saved in previous sessions.
Also, it would be nice to be able to clean up with something like:
badkey = 'delete_me'
del root[badkey]
# alternatively,
root.deleteitem(badkey)
Clearly, I can get around these issues by importing both redis and redisworks, and using the former when I need keys() and delete(), but it would be nice to have it all in one package.
The text was updated successfully, but these errors were encountered:
vhlongmore
changed the title
Missing methods?
Missing keys and delete methods?
Mar 14, 2018
I suppose I could get an approximate equivalent of redis
keys(pattern='')
by doing:but it would be nice to have a proper keys method to search things saved in previous sessions.
Also, it would be nice to be able to clean up with something like:
Clearly, I can get around these issues by importing both
redis
andredisworks
, and using the former when I need keys() and delete(), but it would be nice to have it all in one package.The text was updated successfully, but these errors were encountered: