0

我试图找到有关此的一些信息,但找不到任何答案。

azure app-fabric 缓存是否支持 read-through 和 write behind?

谢谢

阿尔米尔

4

1 回答 1

2

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.

于 2011-11-09T18:55:06.877 回答