How can I use AppFabric DataCache and get values by keys?
eg. I want to do:
string[] keys = new []{"key1","key2", ...,"keyLast" }
object[] values = factory.GetCache("MyCache").Get(keys);
This seems like a very fundamental operation, I am hoping there is a way to do this without roundtripping to the backing store.
P.s. I know redis ServiceStack implementation supports this out of the box, for my use case this is a mandatory feature in deciding which technology to adopt for my company.