Correct using Cache in ASP.NET

Posted by Dmytro Shteflyuk on under ASP.NET

Often in ASP.NET application we see a code which looks like this one:

1
2
3
4
5
if (Cache["SomeData"] != null)
{
    string name = ((SomeClass) Cache["SomeData"]).Name;
    //.....
}

Experienced developer, even if he is not a paranoiac, will find possible problem immediately — NullReferenceException. That’s because of caching implementation in ASP.NET. In ideal case an object, that has been cached, will stay there up to application restart, but in real world it could be deleted between two calls: by the garbage collector when memory is over (because cache uses weak references WeakReference); by another thread to refresh cached data.

So the code I have mentioned before works in 99% of all cases, but sometimes you will get errors in your log, which can not be reproduced easily. Here is right cache usage approach:

1
2
3
4
5
6
SomeClass someClass = Cache["SomeData"] as SomeClass;
if (someClass != null)
{
    string name = someClass.Name;
    //.....
}

Do not relax your vigilance, it’s exactly what they are waiting for! (about bugs)

5 Responses to this entry

Subscribe to comments with RSS

said on January 14th, 2008 at 01:43 · Permalink

спасибо…частенько встречался с подобным багом и руки опускались из-за неопытности :)

AM
said on April 4th, 2008 at 20:06 · Permalink

я если честно не понял почему в первом случае может появиться NullReferenceException, ведь там проверка на null есть? и почему тогда не появится во втором.

said on June 14th, 2008 at 14:12 · Permalink

Тоже не особо понял. Первый вариант часто приводится в различных книгах.

Sergey
said on October 2nd, 2008 at 22:54 · Permalink

Использую первый вариант уже долгое время, никаких багов не замечал, к тому же всегда выставляю время хранения кэша. Обычно при пустом кэше происходит секундная заминка, но в целом все работает нормально.

said on October 8th, 2008 at 09:11 · Permalink

Правильное использование кэша в ASP.NET…

Все дело в механизме работы кэша в ASP.NET. В идеальном случае объект, помещенный в кэш, будет храниться там до перезагрузки приложения, но на …

Comments are closed

Comments for this entry are closed for a while. If you have anything to say – use a contact form. Thank you for your patience.