Tagged Questions
The asp.net-caching tag has no wiki summary.
8
votes
7answers
5k views
how to cache css, images and js?
I would like to have images, css, and javascript cached client-side on their browser when they load up a web page. There are so many different types of caching I am confused as to which ones to use ...
2
votes
1answer
976 views
Authorization and ASP.NET MVC Caching
I'm confused on ASP.NET MVC caching and authorization and in dire need of some clarification.
My self-made authorization attribute inherits from AuthorizeAttribute. It's overridden AuthorizeCore() ...
1
vote
1answer
204 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 ...
0
votes
1answer
12 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
2answers
54 views
Unwanted ASP.Net MVC3 server side caching
I'm working on an MVC3 app and I've come across an issue with objects being cached unintentionally.
My code is creating objects from calls to a separate custom business logic dll.
This business logic ...
0
votes
0answers
14 views
asp.net charts not loaded while loading the output cached version
I am trying to output cache the whole rendered page, and while re-loading the cached page, the charts are not rendered..
Could anyone who went through this before tell me what is the reason, and how ...
0
votes
1answer
21 views
different versions of output caching based on selected values of several dropdownlists
So this is about output caching, and I am trying to use <%@ OutputCache VaryByParam="">, how to realize this?
0
votes
1answer
28 views
Performance Issue Need Suggestions
I have a set of records that take a long time to load from the database. The data is unique for each user, and there are 500 users in the company. This data gets updated at 3:00 AM, and we can see ...
0
votes
1answer
168 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
64 views
Getting 104 error while accessing a web page
One of user is getting 104 (connection reset by peer) error while accessing one of the page in my application, though other pages are opening fine, problem persists only for this page and that too ...
0
votes
2answers
104 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
117 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 ...
0
votes
4answers
353 views
asp.net - deleting cache object at session end
I have a wrapper class for Caching (CachingBL) where I store users that are currently signed in (some of their session info).
In CachingBL wrapper there is actually a dictionary of users, and I am ...
-1
votes
2answers
89 views
Implement second level cache in ASP.Net
Is there any way to use caching in ASP.Net except SQL Server second level cache. As it is the first time to work with caching I want any way with an example. I have found that NHibernate implements ...