Caching Concepts
Q1. What is the difference between Cache object and Application object?
The main difference between the Cache and Application objects is that the Cache object provides cache-specific features, such as dependencies and expiration policies.
Q2. How to get access to Cache object ?
The Cache object is defined in the System.Web.Caching namespace. You can get a reference to the Cache object by using the Cache property of the HttpContext class in the System.Web namespace or by using the Cache property of the Page object.
Q3. What are dependencies in cache and types of dependencies?
When you add an item to the cache, you can define dependency relationships that can force that item to be removed from the cache under specific activities of dependencies. Example if the cache object is dependent on file and when the file data changes you want the cache object to be update. Following are the supported dependency :
- File dependency: Allows you to invalidate a specific cache item when a disk based file or files change.
- Time-based expiration: Allows you to invalidate a specific cache item depending on predefined time.
- Key dependency:Allows you to invalidate a specific cache item depending when another cached item changes.
Q4. Can you show a simple code showing file dependency in cache?
Partial Class Default_aspx
Public Sub displayAnnouncement()
Dim announcement As String
If Cache(“announcement”) Is Nothing Then
Dim file As New _
System.IO.StreamReader _
(Server.MapPath(“announcement.txt”))
announcement = file.ReadToEnd
file.Close()
Dim depends As New _
System.Web.Caching.CacheDependency _
(Server.MapPath(“announcement.txt”))
Cache.Insert(“announcement”, announcement, depends)
End If
Response.Write(CType(Cache(“announcement”), String))
End Sub
Private Sub Page_Init(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Init
displayAnnouncement()
End Sub
End Class
Above given method displayAnnouncement() displays banner text from Announcement.txt file which is lying in application path of the web directory. Above method first checks whether the Cache object is nothing, if the cache object is nothing then it moves further to load the cache data from the file. Whenever the file data changes the cache object is removed and set to nothing.
Q5. What is Cache Callback in Cache?
Cache object is dependent on its dependencies example file based, time based etc…Cache items remove the object when cache dependencies change. provides capability to execute a callback method when that item is removed from cache.
Q6. What is scavenging?
When server running your ASP.NET application runs low on memory resources, items are removed from cache depending on cache item priority. Cache item priority is set when you add item to cache. By setting the cache item priority controls the items scavenging are removed first.
Q7. What are different types of caching using cache object of ASP.NET?
You can use two types of output caching to cache information that is to be transmitted to and displayed in a Web browser:
- Page Output Caching Page output caching adds the response of page to cache object. Later when page is requested page is displayed from cache rather than creating the page object and displaying it. Page output caching is good if the site is fairly static.
- Page Fragment Caching If parts of the page are changing, you can wrap the static sections as user controls and cache the user controls using page fragment caching.
Q8. How can you cache different version of same page using ASP.NET Cache object ?
Output cache functionality is achieved by using “OutputCache” attribute on ASP.NET page header. Below is the syntax:
<%@ OutputCache Duration=”20″ Location=”Server” VaryByParam=”state”
VaryByCustom=”minorversion” VaryByHeader=”Accept-Language”%>
- VaryByParam: Caches different version depending on input parameters send through HTTP POST/GET.
- VaryByHeader: Caches different version depending on the contents of the page header.
- VaryByCustom: Lets you customize the way the cache handles page variations by declaring the attribute and overriding the GetVaryByCustomString handler.
- VaryByControl: Caches different versions of a user control based on the value of properties of objects in the control.
Q9. How will implement Page Fragment Caching?
Page fragment caching involves the caching of a fragment of the page, rather than the entire page. When portions of the page are need to be dynamically created for each user request this is best method as compared to page caching. You can wrap Web Forms user control and cache the control so that these portions of the page don’t need to be recreated each time.
Q10. Can you compare ASP.NET sessions with classic ASP?
ASP.NET session caches per user session state. It basically uses “HttpSessionState” class. Following are the limitations in classic ASP sessions:
- ASP session state is dependent on IIS process very heavily. So if IIS restarts ASP session variables are also recycled. ASP.NET session can be independent of the hosting environment thus ASP.NET session can maintained even if IIS reboots.
- ASP session state has no inherent solution to work with Web Farms.ASP.NET session can be stored in state server and SQL SERVER which can support multiple server.
- ASP session only functions when browser supports cookies. ASP.NET session can be used with browser side cookies or independent of it.
Q11. Which various modes of storing ASP.NET session?
- InProc: In this mode Session state is stored in the memory space of worker process. This is the default setting. If the IIS reboots or web application restarts then session state is lost.
- StateServer: In this mode Session state is serialized and stored in a separate process (Aspnet_state.exe); therefore, the state can be stored on a separate computer(a state server).
- SQL Server: In this mode Session state is serialized and stored in a SQL Server database.
Session state can be specified in <sessionState> element of application configuration file. Using State Server and SQL SERVER session state can be shared across web farms but note this comes at speed cost as ASP.NET needs to serialize and deserialize data over network again and again.
Q12. Is Session_End event supported in all session modes?
Session_End event occurs only in “Inproc mode”.”State Server” and “SQL SERVER” do not have Session_End event.
Q13. What are the precautions you will take in order that StateServer Mode work properly?
- StateServer mode session data is stored in a different process so you must ensure that your objects are serializable.
- <machineKey> elements in Web.config should be identical across all servers.So this ensures that encryption format is same across all computers.
- IIS metabase (\LM\W3SVC\2) must be identical across all servers in that farm.
Q14. What are the precautions you will take in order that SQL Server Mode work properly?
- SQL Servermode session data is stored in a different process so you must ensure that your objects are serializable.
- IIS metabase (\LM\W3SVC\2) must be identical across all servers in that farm.
- By default Session objects are stored in “TempDB”, you can configure it store outside “TempDB” by running Microsoft provided SQL script. “TempDB” database is re-created after SQL SERVER computer reboot. If you
want to maintain session state with every reboot best is to run SQL Script and store session objects outside “TempDB” database.
Q15. Where do you specify session state mode in ASP.NET?
<sessionState mode=”SQLServer”
stateConnectionString=”tcpip=192.168.1.1:42424″
sqlConnectionString=”data source=192.168.1.1; Integrated
Security=SSPI” cookieless=”false” timeout=”20″
/>
Q16. What are the other ways you can maintain state?
Other than session variables you can use hidden fields, ViewState, hidden frames, cookies, query strings.
Q17. What are benefits and limitations of using Hidden fields?
Benefits of using Hidden fields: they are simple to implement, as data is cached on client side they work with Web Farms, all browsers support hidden field, no server resources are required.
Limitations: they can be tampered creating a security hole, page performance decreases if you store large data, as the data are stored in pages itself, hidden fields do not support rich structures as HTML hidden fields are only single valued. Then you have to work around with delimiters etc to handle complex structures
Below is how you will actually implement hidden field in a project
<input id=”HiddenValue” type=”hidden” value=”Initial Value” runat=”server” name=”HiddenValue”>
Q18. What is ViewState?
Viewstate is a built-in structure for automatically retaining values amongst the multiple requests for the same page. The viewstate is internally maintained as a hidden field on the page but is hashed, providing greater security than developer-implemented hidden fields do.
Q19. Does the performance for ViewState vary according to User controls?
Performance of ViewState varies depending on the type of server control to which it is applied. Label, TextBox, CheckBox, RadioButton, and HyperLink are server controls that perform well with ViewState. DropDownList, ListBox, DataGrid, and DataList suffer from poor performance because of their size and the large amounts of data making roundtrips to the server.
Q20. What are benefits and limitations of using Viewstate for state management?
Benefits: no server resources are required because state is in a structure in the page code, simplicity, states are retained automatically, the values in view state are hashed, compressed, and encoded, thus representing a higher state of security than hidden fields, ViewState is good for caching data in Web frame configurations because the data is cached on the client.
Limitations:page loading and posting performance decreases when large values are stored because view state is stored in the page, although view state stores data in a hashed format, it can still be tampered because it is stored in a hidden field on the page. The information in the hidden field can also be seen if the page output source is viewed directly, creating a potential security risk.
ASP.NET Caching Concepts with Questions and Answers
1. How can you use Hidden frames to cache client data?
<FRAMESET cols=”100%,*,*”>
<FRAMESET rows=”100%”>
<FRAME src=”data_of_frame1.html”></FRAMESET>
<FRAME src=”data_of_hidden_frame.html”>
<FRAME src=”data_of_hidden_frame.html” frameborder=”0″ noresize
scrolling=”yes”>
</FRAMESET>
Q2. What are benefits and limitations of using Hidden frames?
Benefits: you can cache more than one data field, the ability to cache and access data items stored in different hidden forms, the ability to access JScript variable values stored in different frames if they come from the same site.
Limitations: hidden frames are not supported on all browsers, hidden frames data can be tampered thus creating security hole.
Q3. What are benefits and limitations of using Cookies?
Benefits: no server resources are required as they are stored in client, they are light weight and simple to use.
Limitations: most browsers place a 4096-byte limit on the size of a cookie, although support for 8192-byte cookies is becoming more common in the new browser and client-device versions available today, some users disable their browser or client device’s ability to receive cookies, thereby limiting the use of cookies, cookies can be tampered and thus creating a security hole, cookies can expire thus leading to inconsistency.
Q4. What are benefits and limitations of using Hidden frames?
Benefits: you can cache more than one data field, the ability to cache and access data items stored in different hidden forms, the ability to access JScript variable values stored in different frames if they come from the same site.
Limitations: hidden frames are not supported on all browsers, hidden frames data can be tampered thus creating security hole.
Below is sample code of implementing cookiesRequest.Cookies.Add(New HttpCookie(“name”, “user1″))
Q5. What is Query String and what are benefits and limitations of using Query Strings?
A query string is information sent to the server appended to the end of a page URL.
Benefits:no server resources are required, the query string containing in the HTTP requests for a specific URL, all browsers support query strings.
Limitations: query string data is directly visible to user thus leading to security problems, most browsers and client devices impose a 255-character limit on URL length.
Below is a sample “Login” query string passed in URL http://www.querystring.com/login.aspx?login=testing. This query string data can then be requested later by using Request.QueryString(“login”).
Q6. What is Absolute and Sliding expiration?
Cache.Insert(“announcement”, announcement, depends, _
DateTime.Now.AddMinutes(1), Nothing)
Sliding Expiration specifies that the cache will expire if a request is not made within a specified duration. Sliding expiration policy is useful whenever you have a large number of items that need to be cached, because this policy enables you to keep only the most frequently accessed items in memory. For example, the following code specifies that the cache will have a sliding duration of one minute. If a request is made 59 seconds after the cache is accessed, the validity of the cache would be reset to another minute:
Cache.Insert(“announcement”, announcement, depends, _
DateTime.MaxValue, _
TimeSpan.FromMinutes(1))
Q7. What is cross page posting?
By default, button controls in pages post back to the same page that contains the button, where you can write an event handler for the post. In most cases this is the desired behavior, but occasionaly you will also want to be able to post to another page in your application. The Server.Transfer method can be used to move between pages, however the URL doesn’t change. Instead, the cross page posting feature in ASP.NET 2.0 allows you to fire a normal post back to a different page in the application. In the target page, you can then access the values of server controls in the source page that initiated the post back.
To use cross page posting, you can set the PostBackUrl property of a Button, LinkButton or ImageButton control, which specifies the target page. In the target page, you can then access the PreviousPage property to retrieve values from the source page. By default, the PreviousPage property is of type Page, so you must access controls using the FindControl method. You can also enable strongly-typed access to the source page by setting the @PreviousPageType directive in the target page to the virtual path or Type name of the source page.
Here is a step-by-step guide for implementing the cross-page post back using controls that implement the IButtonControl interface.
- Create a Web Form and insert a Button control on it using the VS .NET designer.
- Set the button’s PostBackUrl property to the Web Form you want to post back. For instance in this case it is “nextpage.aspx” <asp:Button ID=”Button1″ runat=”server” PostBackUrl=”~/nextpage.aspx” Text=”Post to nextpage” />
When the PostBackUrl property of the IButtonControl is set, the ASP.NET framework binds the corresponding HTML element to new JavaScript function named WebForm_DoPostBackWithOptions. The corresponding HTML rendered by the ASP.NET
2.0 will look like this:
<input type=”submit” name=”Button1″ value=”Post to Page 2″ onclick=”javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(“Button1″, “,false”,”Page2.aspx”, false, false))” id=”Button1″ />
Q8. How do we access ViewState value of this page in the next page?
View state is page specific; it contains information about controls embedded on the particular page. ASP.NET 2.0 resolves this by embedding a hidden input field name, __POSTBACK . This field is embedded only when there is an IButtonControl on the
page and its PostBackUrl property is set to a non-null value. This field contains the view state information of the poster page. To access the view state of the poster page, you can use the new PreviousPage property of the page:
Page poster = this.PreviousPage;
Then you can find any control from the previous page and read its state:
Label posterLabel = poster.findControl(“myLabel”);
string lbl = posterLabel.Text;
This cross-page post back feature also solves the problem of posting a Form to multiple pages, because each control, in theory, can point to different post back URL.
Q9. Can we post and access ViewState in another application?
You can post back to any page and pages in another application, too. But if you are posting pages to another application, the PreviousPage property will return null. This is a significant restriction, as it means that if you want to use the ViewState, you are confined, for example, posting to pages in the same virtual directory. Even so, this is a highly acceptable addition to the functionality of ASP.NET.
Q10. How do we enable SQL Cache Dependency in ASP.NET 2.0?
Below are the steps to enable a SQL Cache Dependency:
- Enable notifications for the database. Before you can use SQL Server cache invalidation, you need to enable notifications for the database. This task is performed with the aspnet_regsql.exe command-line utility, which is located in the c:\[WinDir]\Microsoft.NET\Framework\[Version] directory.
aspnet_regsql -ed -E -d Northwind , where -ed : command-line switch, -E: use trusted connection , -S: specify server name it other than the current computer you are working on, -d: database name.
So now let’s try to understand what happens in the database because of “aspnet_regsql.exe”. After we execute the “aspnet_regsql -ed -E -d Northwind” command you will see one new table AspNet_SqlCacheTablesForChangeNotification and four new stored procedures created. Essentially, when a change takes place, a record is written in this table. The SQL Server polling queries this table for changes.
Here is a brief run of what the stored procedures do.
- AspNet_SqlCacheRegisterTableStoredProcedure: This stored procedure sets a table to support notifications. This process works by adding a notification trigger to the table, which will fire when any row is inserted, deleted, or updated.
- AspNet_SqlCacheUnRegisterTableStoredProcedure: This stored procedure takes a registered table and removes the notification trigger so that notifications won’t be generated.
- AspNet_SqlCacheUpdateChangeIdStoredProcedure: The notification trigger calls this stored procedure to update the AspNet_SqlCacheTablesForChangeNotification table, thereby indicating that the table has changed.
- AspNet_SqlCacheQueryRegisteredTablesStoredProcedure:This extracts just the table names from the AspNet_SqlCacheTablesForChangeNotification table. It’s used to get a quick look at all the registered tables
- AspNet_SqlCachePollingStoredProcedure: This will get the list of changes from the
AspNet_SqlCacheTablesForChangeNotification table. It is used to perform polling.- Enabling notification for individual tablesOnce the necessary stored procedure and tables are created then we have to notify saying which table needs to be enabled for notifications. That can be achieved by two ways:aspnet_regsql -et -E -d Northwind -t Products or exec spNet_SqlCacheRegisterTableStoredProcedure ‘TableName’ .
Registering tables for notification internally creates triggerfor the tables. For instance for a “products” table the following trigger is created. So any modifications done to the “Products” table will update the "AspNet_SqlCacheNotification” table.
“AspNet_SqlCacheTablesForChangeNotification” contains a single record for every table you’re monitoring. When you make a change in the table (such as inserting, deleting or updating a record), the change Id column is incremented by 1.ASP.NET queries this table repeatedly keeps track of the most recent changed values for every table. When this value changes in a subsequent read, ASP.NET knows that the table has changed.
- Enable ASP.NET polling using “web.config” fileNow that all our database side is configured in order to get the SQL Cache working in the ASP.NET side we need to do some configuration in the web.config file.
We need to set two attributes in the “web.config” file: set “Enabled” attribute to true to set the caching on and set the poll time attribute to the number of milliseconds between each poll.
Finally use the Cache dependency object in your ASP.NET code. Now comes the final step to use our cache dependency with programmatic data caching, a data source control, and output caching. For programmatic data caching, we need to create a new SqlCacheDependency and supply that to the Cache.Insert() method. In the SqlCacheDependency constructor, you supply
two strings. The first is the name of the database you defined in the element in the section of the web.config file e.g: Northwind. The second is the name of the linked table e.g: Products.
private static void CacheProductsList(List<ClsProductItem> products)
{
SqlCacheDependency sqlDependency = new SqlCacheDependency(“Northwind”,
“Products”);
HttpContext.Current.Cache.Insert(“ProductsList”, products, sqlDependency,
DateTime.Now.AddDays(1), Cache.NoSlidingExpiration);
}
private static List<ClsProductItem> GetCachedProductList()
{
return HttpContext.Current.Cache["ProductsList"] as List<ClsProductItem>;
}
Q11. What is Post Cache substitution?
Post cache substitution is used when we want to cache the whole page but also need some dynamic region inside that cached page. Some examples like QuoteoftheDay,RandomPhotos, and AdRotator etc. are examples where we can implement Post Cache Substitution.
Post-cache substitution can be achieved by two means – call the new Response.WriteSubstitution method, passing it a reference to the desired substitution method callback or add a <asp:Substitution> control to the page at the desired location, and set its methodName attribute to the name of the callback method.
We pass the response substitution callback to the method. So now when ASP.NET page framework retrieves the cached page, it automatically triggers your callback method to get the dynamic content. It then inserts your content into the cached HTML of the page. Even if your page hasn’t been cached yet (for example, it’s being rendered for the first time), ASP.NET still calls your callback in the same way to get the dynamic content. So you create a method that generates some dynamic content, and by doing so you guarantee that your method is always called, and it’s content is never cached.
In case of using “<asp:substitution>” control we need to provide “methodname” attribute of the substitution control.
Q12. Why do we need methods to be static for Post Cache substitution?
ASP.NET should be able to call this method even when there isn’t an instance of your page class available. When your page is served from the cache, the page object isn’t created. So ASP.NET skips the page life cycle when the page is coming from cache, which means it won’t create any control objects or raise any control events. If your dynamic content depends on the values of other controls, you’ll need to use a different technique, because these control objects won’t be available to your callback.
Comments
Post a Comment