Today I got a problem while develop my project.
For example I put some data like blog posts to memcache in by cache key = post_list_OFFSET_LIMIT, where offset and limit it's dynamic data by pagination.
But I can't clear cache by prefix post_list_
when I adding new post. New post will be shown after cache expiration.
Memcache doesn't has feature by tagging. Tagging support can be added by custom code. Does redis has this feature? Tagging or remove tags by prefix?
Thanks.