Hi, I just want to delete cached data, but I have many keys, for example:
user_54_books
user_54_movies
user_54_comments
user_54_foobar
I can write $cache->delete('user_54_books');
but I have to do it with all "user_ID_objects", can I say to memcache, something like delete->('user_54_*');
? how? thanks :)