Tagged Questions
3
votes
1answer
496 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
904 views
Is there some sort of CacheDependency in System.Runtime.Caching?
I heard that .NET 4 has a new caching API.
Okay, so the good old System.Web.Caching.Cache (which is, by the way, still there in .NET 4) has the ability to set so-called CacheDependency objects to ...
2
votes
1answer
484 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
403 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
69 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
96 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
1answer
244 views
.NET Cross platform cache dependency
What would one recommend as a cross platform cache dependency?
Our application may use multiple database platforms (e.g. MSSQL and MySQL) so this rules out Sql Cache Dependency.
I had thought about ...
1
vote
2answers
261 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 ...
1
vote
2answers
486 views
C# Caching use of cache dependency
I am trying to implement caching in an web application. The caching is to be done in the BLL.
The BLL method signiture is
public static List<Ailias> Select(List<Filter> filters)
and ...
1
vote
3answers
730 views
Why does stored procedure invalidate SQL Cache Dependency?
After many hours, I finally realize that I am working correctly with the Cache object in my ASP.NET application but my stored procedures stops it from working correctly.
This stored procedure works ...
0
votes
1answer
38 views
How do I cache a composite server control?
How would I use the system caching object, HttpContext.Current.Cache to store a custom server control in the cache?
Currently I have code that looks like this:
string adxkey = ...
0
votes
0answers
139 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 ...
0
votes
2answers
832 views
Cache and SqlCacheDependency (ASP.NET MVC)
We need to return subset of records and for that we use the following command:
using (SqlCommand command = new SqlCommand(
"SELECT ID, Name, Flag, IsDefault FROM (SELECT ...