Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
291 views

Cache == null? Is it possible?

Is it legal to make the following statement: if(Cache[CACHE_KEY] == null) { //do something to form cache } else { //do something else that uses cache } I'm not sure my program is actually ...
2
votes
1answer
375 views

Is ASP.Net State Server an elegant solution?

We have an ASP.Net MVC project that will start with a single web server but will likely soon scale into a small web farm. As ASP.Net Authentication stores a UserID, and data caching may also be ...
2
votes
1answer
175 views

ASP.NET - Is everything I store in Cache part of the w3wp process?

It is my understand that the ASP.NET Cache is part of the w3wp process, meaning writing to and reading from it does not cross process boundaries does not require marshalling does not require or ...
1
vote
1answer
223 views

HttpContext.Current.Items is too fast to access item, but How?

I wrote simple test add 100 items to [Collection] read 1000000 times from [Collection] randomly When [Collection]==HttpContext.Current.Items it takes 50 ms [Collection]==HttpRuntime.Cache it ...
1
vote
0answers
207 views

Session, FormsAuthenticationTicket, store data about the user?

I'm building a web application that needs to be able to scale. We want to store a connection string, an object that says what organization the user is working on right now and the identity of the ...
1
vote
2answers
93 views

what techniques should be used to handle objects in asp.net Cache to prevent problems from multiple asp.net worker threads access?

since asp.net contains multiple threads that are executing at the same time. so if 2 threads access an object (simple or complex) that i got from the the asp.net httpcontext Cache. can't this lead to ...
0
votes
1answer
33 views

DonutOutputCache is not clearing cache when using variable

I have an ActionResult which i want it to be cached based on the id [DonutOutputCache(Duration = 3600, VaryByParam = "product_Id")] public ActionResult ProductInfo(Guid product_Id) { ...
0
votes
1answer
30 views

Is CacheItemRemovedCallback guaranteed to run?

I'm buffering db inserts to logging in the ASP.NET cache. I'd like to flush those to disk when the item is evicted from cache. Excluding trivial obvious things like unplugging the server, how hard ...
0
votes
0answers
13 views

Visual Studio ASP.Net Cache Analyzer

Does anyone know where I can download a copy of the VS Add-in to analyzer the ASP.Net cache? It is described here http://msdn.microsoft.com/en-us/magazine/cc300778.aspx#S10 but all of the links are ...
0
votes
1answer
181 views

asp.net webservice cache extend expiration

I haven't found anything so I dont believe what I want is possible. I want to reset the sliding expiration of a cache variable every time it is accessed. public class MyCache { public static object ...
0
votes
1answer
94 views

ASP.net Cache overuse?

In a web project I perform a SELECT SQL query against an Indexed column of a table with 10-15 rows. I want to ask you if it's good to cache this query in server memory as this SELECT against indexed ...
0
votes
2answers
111 views

Is there a way to use use a cache profile when manually adding items to the cache?

I have output caching in my application configured using output cache profiles in the web.config. It is very convenient to be able to setup caching on all the output items that need it and then be ...
0
votes
1answer
120 views

ASP.NET Caching in a web cluster

We are building a large scale web platform where we try to use Caching to speed up things - though now it's a single server, we'll probably upgrade it to a cluster. Will the Caching work there? Should ...