Tagged Questions
The cache-dependency tag has no wiki summary.
3
votes
1answer
497 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
0answers
177 views
Strange behaviour when loading razor view from custom VirtualPathProvider (ASHX Source)
I get some strange behaviour when I load data via my custom VirtualPathProvider.
It might be important to mention, that I am trying to use this view as a layout.
public class MyVirtualPathProvider : ...
2
votes
1answer
914 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
70 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
97 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
245 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
262 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
1answer
676 views
VirtualPathProvider on IIS 6 does not handle file stream caching correctly
I am working on a framework where .aspx and .master pages are embedded in an assembly, using VirtualPathProvider to route a url to a specific embedded resource.
Sample url: ...
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
731 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
0answers
68 views
asp.net mvc-3 output cache depending on an other cache element
The [OutputCache] attribute has only SqlCacheDependency parameter, but I would like it to depend on other cache objects. How is it possible?
When I manually make a cache object I can add cache ...
0
votes
1answer
33 views
why can a CacheDependency be invalid right after creating it! (ASP.NET-MVC3)
Whenever I make a CacheDependency in a testbed, it works fine.
If I write
var dep = new CacheDependency(null, new string[] { "dep" });
dep will be a new CacheDependency, with the properties: ...
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
141 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
834 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 ...
0
votes
1answer
252 views
Can I use SQL cache dependency with SubSonic?
I want to use SQL cache dependency with SubSonic. How can I do this?