Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way that I can put objects into the cache with a dependency?

For example if I put ObjectB into the cache with a dependency on ObjectA so that when ObjectA expires or I remove it ObjectB will also automatically be removed?

I know that I can create regions and tag items that way to create my dependency but I dont really want to do this as Regions exist on only one cache server in the cluster which kind of defeats the point of a distributed and scalable caching solution.

If I cant add with a straight out dependency Im thinking I could possibly work around it by adding my objects with some kind of key naming convention to create the dependencies.

eg. Add ObjectA with key 'ObjectA' Add ObjectB with key 'ObjectA_ObjectB'

but then when I want to expire all the objects dependant on ObjectA I would need to fetch based on a wildcard serach of the key. Is this possible?

Any thoughts or suggestions?

share|improve this question

1 Answer

up vote 1 down vote accepted

No, right now there is no support in the AppFabric API for dependencies. Unfortunately, neither is there a way to search through the keys in the way you suggest :-(

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.