(I may be totally off in my understanding here but I still would like to ask.)
The MemcacheServiceFactory can return a MemcacheService instance given a namespace.
Can one application request MemcacheService instances for more than one namespace? If yes, can namespace be used as a grouping concept?
For instance, say my model has folders and files and I use folder names as namespaces. I can store cached data for files that belong to a certain folder in the MemcacheService instance with that folder's name as the namespace. And when I delete the folder I simply clear all entries in this MemcacheService instance there by not affecting any other folders or files.
Thanks, Keyur