I am using memcached
with pylibmc
as binaries in my Django app. Now what I want to get list of key values from cache.
Suppose I have this key value pair data in cache,
{'Key_1':[1,2,3]} {'Key_2':[4,5,6]} {'Key_3':[6,7,8]}
I can get a single record by
cache.get('Key_1')
I want to get all Key_*
data
cache.get('Key_*')
Anyone suggest a way? or is it possible?
Thanks!