I've got model X constructed per other model Y and user U. X is stored in django-cache under key 'X_Y.id_U.id'. Now i want to delete all models X binded to Y from cache (for all users). How can i do this well?
|
feedback
|
|
I've got model X constructed per other model Y and user U. X is stored in django-cache under key 'X_Y.id_U.id'. Now i want to delete all models X binded to Y from cache (for all users). How can i do this well?
| |||
|
feedback
|
cache.delete_many(). You have a problem retrieving the list? – DrTyrsa Sep 26 '11 at 10:27