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
Please implement a aiocache.Cache.all() method to get a list of all the key:value pairs in the cache.
It would be nice if we could also filter it, such as with aiocache.Cache.all(namespace='users') to retrieve a list of all key:value pairs where the keys start with users:
The text was updated successfully, but these errors were encountered:
I'm not very familiar with memcached, but a quick google search suggests that there is not a standard / reliable way to request all keys for that backend.
Please implement a aiocache.Cache.all() method to get a list of all the
key:value
pairs in the cache.It would be nice if we could also filter it, such as with aiocache.Cache.all(namespace='users') to retrieve a list of all
key:value
pairs where thekeys
start withusers:
The text was updated successfully, but these errors were encountered: