Hi,
Here's situation:
- One codebase connects to multiple databases;
- Few cashes can store data from the same table, data is gathered by different sql queries;
- Having file based cache allows me to create a folder per database and then reset it by tags, having tags allows me to generate keys like md5 of a sql query.
Is something like this possible?
- memcache_set() - add tags parameter type text[] at the end
- memcache_flush_tags(tags text[], optional policy smallint) - new function, policy can be ALL or ANY tags.
Thank you in advance.