Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx thread: Does .NET framework provide any generic caching component?


Message #1 by "Sampath, Ramanujam (Cognizant)" <SRamanuj@c...> on Mon, 21 Oct 2002 15:32:30 +0530
Does .NET framework provide any generic caching component?

Regards,
S.Ramanujam
Programmer Analyst
Cognizant Technology Solutions (p) Ltd. - CTS
38 & 39 Whites Road,
WCB - Whites Road Circular Building
Royapettah, Chennai - 600014
Ph : +xx xx xxx xxxx Extn 5129 [Off]
     : +xx xx xxx xxxx                 [Res]

Message #2 by "Mike Amundsen" <mike@a...> on Mon, 21 Oct 2002 13:28:55 -0400
ASP.NET offers three caching options built into the runtime:

Page Output Caching:
This provides for storing a complete page in memory instead of calling
it from disk.  Just add a directive at the top of an ASPX page.

Fragment Caching:
This provides for caching partial pages in memory using User Controls.
Just add a directive at the top of an ASCX page.

Caching Object:
This provides a thread-safe shared memory pool at the application level
(not session) where you can store any data from simple variables to
complete DataSet and other serializable collections.

Get details and examples here:
http://asp.net/Tutorials/quickstart.aspx

scroll down the menu on the left and see the Cache Services section.

MCA
Mike Amundsen
mca@E...
xxx.xxx.xxxx
xxx.xxx.xxxx  (FAX)
Host your .NET apps @ EraServer.NET
 

-----Original Message-----
From: Sampath, Ramanujam (Cognizant) [mailto:SRamanuj@c...]

Sent: Monday, October 21, 2002 6:03 AM
To: ASP+
Subject: [aspx] Does .NET framework provide any generic caching
component?

Does .NET framework provide any generic caching component?

Regards,
S.Ramanujam
Programmer Analyst
Cognizant Technology Solutions (p) Ltd. - CTS
38 & 39 Whites Road,
WCB - Whites Road Circular Building
Royapettah, Chennai - 600014
Ph : +xx xx xxx xxxx Extn 5129 [Off]
     : +xx xx xxx xxxx                 [Res]


---

ASP.NET 1.0 Namespace Reference with C#
http://www.wrox.com/acon11.asp?ISBN=1861007442

ASP.NET 1.0 Namespace Reference with VB.NET
http://www.wrox.com/acon11.asp?ISBN=1861007450

These books are a complete reference to the ASP.NET namespaces 
for developers who are already familiar with using ASP.NET. 
There is no trivial introductory material or useless .NET 
hype and the presentation of the namespaces, in an easy-to use 
alphabetical order ensures a user-friendly reference format.
We provide in-depth coverage of all the major ASP.NET classes, 
giving you those real-world tips that the documentation doesn't 
offer, and demonstrating complex techniques with simple 
examples.  

---

Message #3 by Greg Griffiths <greg2@s...> on Mon, 21 Oct 2002 20:57:53 +0100
yes plenty  - 
http://search.support.microsoft.com/search/default.aspx?Query=caching&Product=aspnet&maxResults=25

At 15:32 21/10/02 +0530, you wrote:
>Does .NET framework provide any generic caching component?
>
>Regards,
>S.Ramanujam
>Programmer Analyst
>Cognizant Technology Solutions (p) Ltd. - CTS
>38 & 39 Whites Road,
>WCB - Whites Road Circular Building
>Royapettah, Chennai - 600014
>Ph : +xx xx xxx xxxx Extn 5129 [Off]
>      : +xx xx xxx xxxx                 [Res]
>
>
>---
>
>ASP.NET 1.0 Namespace Reference with C#
>http://www.wrox.com/acon11.asp?ISBN=1861007442
>
>ASP.NET 1.0 Namespace Reference with VB.NET
>http://www.wrox.com/acon11.asp?ISBN=1861007450
>
>These books are a complete reference to the ASP.NET namespaces
>for developers who are already familiar with using ASP.NET.
>There is no trivial introductory material or useless .NET
>hype and the presentation of the namespaces, in an easy-to use
>alphabetical order ensures a user-friendly reference format.
>We provide in-depth coverage of all the major ASP.NET classes,
>giving you those real-world tips that the documentation doesn't
>offer, and demonstrating complex techniques with simple
>examples.
>
>---



  Return to Index