I have two apps connecting to memcached servers on different namespaces, for example's sake we'll call them "admin" and "users".
Every now and then I want to expire some fragments in the "users" namespace from the admin application.
Note: I am not caching/expiring actions as per the other several questions/answers I found here. I want to expire keys such as "abcde". I cache all sorts of things, AR results, JSON, and so on.
Already tried things like:
Rails.cache.delete("abcd")
Rails.cache.delete("users/abcd")
Rails.cache.delete("/users/abcd")
Digests are off.
How do I do this?