Tagged Questions
3
votes
2answers
34 views
SQLCacheDependency and AppFabric Server
I have a situation where I need to replace our current file based cache dependency system with a new one. What I am looking at is moving towards using AppFabric for caching. I was wondering if the ...
3
votes
1answer
533 views
ASP.Net CacheDependency object question
I think I know the answer to this but I cannot find a definitive yes or no anywhere in documentation or articles.
Using .Net 3.5 ASP.Net caching, if you make a CacheDependency passing a string[] of ...
2
votes
1answer
490 views
ASP.NET set cache dependency with a SqlCommand
Is this an effective way to set the cache item dependent on the query?
HttpRuntime.Cache.Insert(
"ListLanguages",
list,
new ...
2
votes
2answers
408 views
Problem with ASP.NET Caching
I've got two items in my cache
Key: Cat
Key: Animal_Vacinations
Now, Animal_Vacinations has a key-based cache dependency on Cat. So, if anything changes for the cache item Cat, then the cache item ...
1
vote
1answer
99 views
CacheDependency from 2 or more other cache items. (ASP.NET MVC3)
I'm a little puzzled over the possible cachedependencies in asp.net, and I'm not sure how to use them.
I would like to add items to the HttpRuntime.Cache in a way, that the elements should invalidate ...
1
vote
1answer
121 views
Value stored in session depends on value in HttpRuntime cache
I have data common for all users stored in HttpRuntime.Cache.
Then I have some user related data stored in Session.
HttpRuntime.Cache has CacheDependency mechanism, which can be used to define ...
1
vote
2answers
281 views
CacheDependancy for multiple Cached items
I would like to have an item in the ASP.NET CacheObject, which if it were changed a number of dependant items would be removed
So.. In a request
If prompted and it exists in the cache remove the ...
0
votes
0answers
150 views
Caching and cache invalidation in user controls?
HI,
In our .aspx pages we have many user controls. each user control executes a sql query. The caching mechanism to be followed is to fragment cache each user control on the page and add the query ...