vote up 3 vote down star

So I am working on a project which uses ASP.NET. I am trying to call Cache["key"] but the compiler complains about how System.Web.Caching.Cache is "nat valid at this point".

If I call Cache obj = new Cache(); the obj is always null.

I can access HttpContext.Current.Cache - but this doesnt let me specify an absolute expiration and sliding expiration in the Insert() method.

Can someone help me?

flag

2 Answers

vote up 7 vote down check

You should be able to absolute or sliding expiration calling the insert on HttpRuntime.Cache. It has several overloads. Ex:

HttpRuntime.Cache.Insert("EXAMPLE_KEY", 
                        exampleItem, 
                        Nothing,                           
                        DateTime.Now.AddHours(1),
                        System.Web.Caching.Cache.NoSlidingExpiration);

The exact same code should also work with HttpContext.Current.Cache.

link|flag
Can't have an absolute expiration AND a sliding expiration? It seems like it one or the other. – Ash Feb 10 at 4:33
I am not sure how that would work, the two forms of expiration would surely contradict each other at some point. For this reason it is not allowed. One value should be supploed and the other should be System.Web.Caching.Cache.NoSlidingExpiration and System.Web.Caching.Cache.NoAbsoluteExpiration. – Jim Petkus Feb 10 at 13:50
vote up 0 vote down

What about the data access layer? Is it correct to use HttpContext or HttpRuntime in the data access layer? This works really fast, but I am testing this on a single computer.

What would happen if we need to place the data access layer on a different server so it provides data to the front-ends?

Is it completely OK? If not, is there any other way?

link|flag
I know that this is not an answer, but I couldn't comment other questions. – Fabio Milheiro Sep 28 at 21:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.