473,385 Members | 1,320 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

HttpContext.Cache

Does anyone know of some good resources (books, sites) that provide info
on HttpContext cache and asp.net (as well as .net runtime) caching?

I just got amazed at the cache when I saw tracing results on the asp.net
pages. It saved so much time when loading collections from the database.
Now I want to know more so that I can watch out for problems using the
cache (memory load for instance). MSDN and many other sites just
document calls, no discussion or things like that.

Thanks,

l
Nov 19 '05 #1
3 3130
This should do:
Chapter 6 -Improving ASP.NET Performance -> Caching Explained
http://www.msdn.microsoft.com/asp.ne...netchapt06.asp

You might also navigate to
http://www.msdn.microsoft.com/asp.ne...l/scalenet.asp
to read the whole book: Improving .NET Application Performance and
Scalability

Regards

---------------------------------------
Daniel Walzenbach
MCP

www.walzenbach.net

"laimis" <si*****@iit.edu> schrieb im Newsbeitrag
news:eh*************@TK2MSFTNGP15.phx.gbl...
Does anyone know of some good resources (books, sites) that provide info
on HttpContext cache and asp.net (as well as .net runtime) caching?

I just got amazed at the cache when I saw tracing results on the asp.net
pages. It saved so much time when loading collections from the database.
Now I want to know more so that I can watch out for problems using the
cache (memory load for instance). MSDN and many other sites just document
calls, no discussion or things like that.

Thanks,

l

Nov 19 '05 #2
Daniel Walzenbach wrote:
This should do:
Chapter 6 -Improving ASP.NET Performance -> Caching Explained
http://www.msdn.microsoft.com/asp.ne...netchapt06.asp

You might also navigate to
http://www.msdn.microsoft.com/asp.ne...l/scalenet.asp
to read the whole book: Improving .NET Application Performance and
Scalability


Thanks man!!! Exactly what I was looking for.. MSDN should either
improve their search engine or I should use better queries :)

laimis
Nov 19 '05 #3
Good to hear that I could help you!

Greetings
---------------------------------------
Daniel Walzenbach
MCP

www.walzenbach.net

"laimis" <si*****@iit.edu> schrieb im Newsbeitrag
news:OD**************@TK2MSFTNGP10.phx.gbl...
Daniel Walzenbach wrote:
This should do:
Chapter 6 -Improving ASP.NET Performance -> Caching Explained
http://www.msdn.microsoft.com/asp.ne...netchapt06.asp

You might also navigate to
http://www.msdn.microsoft.com/asp.ne...l/scalenet.asp
to read the whole book: Improving .NET Application Performance and
Scalability


Thanks man!!! Exactly what I was looking for.. MSDN should either improve
their search engine or I should use better queries :)

laimis

Nov 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: George Ter-Saakov | last post by:
What is HttpContext.Cache for ? The usual HttpRequest lasts miliseconds. Why would someone to cache anything? We do have HttpContext.Items to keep any extra info during the request. Can...
5
by: DesignerX | last post by:
What is the difference between Page.Cache and HttpContext.Current.Cache? Do these access the same thing? Is there any easy way to clear all items in the cache? TIA, Stan
3
by: James | last post by:
If I have set the session state for an asp.net application to be out of process how does this affect the HttpContext.Cache? What I want to know it is possible to store the Cache out of process as...
4
by: Mat | last post by:
Hi, I've stumbled onto a problem when using the caching object in ASP.Net. I'm placing a static dataset to the cache as the data only changes once a day. Whilst writing to the cache I'm using...
3
by: xzzy | last post by:
A. I need to access: System.Web.HttpContext.Current.Cache but get this error: "Object reference not set to an instance of the object" B. System.Web.HttpContext.Current.Cache is accessible...
2
by: kplkumar | last post by:
This is the scenario. The flow of control goes from WebService --> OurManager --> Persistence --> Database also OurManager spwans a thread to execute the EmailSubsystem. This system ues the...
4
by: msch-prv | last post by:
Hello. I am trying to use caching to populate a datalist. The select method of the associated objectdatasource calls up GetRecipePageByRecipeCatID() to request the proper data (I am using custom...
6
by: =?Utf-8?B?emlubw==?= | last post by:
in asp.net 2, I load a dataset from the Cache object into a local object to use to perform processing. I had been using httpcontext.current.cache and what I noticed is sometime I'm not able to get...
3
by: Madhur | last post by:
Hello I am delivering an asp.net 2.0 application to my customer. I need to know, If I need to check for the condition of HttpContext.Current to be null in my business logic. I have extensively...
8
by: SpaceMarine | last post by:
hello, my web app form has many DropDownLists that pull their content from a database. these calls are in a Business Access Layer, when first checks the context's Cache object for existing...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.