views:

22

answers:

0

I am using the entlib's Caching Application Block with isolated storage.

I want different instances of the same application to use the same backing store. Currently, the second instance of my app reads from the backing store when it starts up, so items that have already been cached are read. However, when either instance cahces a new item, the other does not know about this.

Is there any way around this?

I have looked at using the FileDependency expiration, but because of the way the isolated backing store does not use a single file to store the data, this won't work.

Any ideas will be most welcome.