zebra
zebra

Reputation: 1338

azure appfabric cache write behind functionality

i tried to find some information on this but could not find any answer.

does azure app-fabric cache supports read-through and write behind?

thanks

almir

Upvotes: 0

Views: 234

Answers (1)

knightpfhor
knightpfhor

Reputation: 9409

No.

If you get a cache miss, you have to write the code your self to load the item into the cache, but this code is generally pretty trivial.

Likewise for updating the cache. You have to update the underlying data store yourself and then update the item in cache. Yet again, pretty trivial.

Upvotes: 2

Related Questions