DotNetShoutout - Stories tagged with Caching
3
Shouts

Donut Hole Caching In ASP.NET MVC by Using Child Actions and OutputCacheAttribute

published 571 days, 15 hours, 17 minutes ago posted by http://tugberk-ugurlu.myopenid.com/http://tugberk-ugurlu.myopenid.com/ 572 days, 3 minutes ago
Sunday, October 30, 2011 8:41:35 PM GMT Sunday, October 30, 2011 11:55:32 AM GMT
This blog post demonstrates how to implement Donut Hole Caching in ASP.NET MVC by Using Child Actions and OutputCacheAttribute (more)
category: Web Dev | clicked: 26 | comment | | source: tugberkugurlu.com
tags: ASP.NET MVC, C#, ASPNETMVC, Caching, Cache, Razor, ASP.NET
6
Shouts

Client Side Tracing for Windows Azure AppFabric Caching - Windows Azure Blog

published 690 days, 3 hours, 44 minutes ago posted by iftekharahmedamitiftekharahmedamit 694 days, 18 hours, 21 minutes ago
Monday, July 04, 2011 8:14:28 AM GMT Wednesday, June 29, 2011 5:37:33 PM GMT
In this post, I will describe how to enable Client-side traces for AppFabric Caching Service. I will also touch upon some basic problems you might face while trying out the same. To configure the cache client to generate System.Diagnostic.Traces pertaining to the AppFabric cache, please follow the below steps: Configuration File Option In your app.config/web.config you need to add , to the appropriate location as per the cases below: a. DataCacheClients Section If you have a ‘dataCacheClients’ sec... (more)
category: Architecture | clicked: 18 | comment | | source: blogs.msdn.com
tags: Windows Azure, Caching, AppFabric, Azure
6
Shouts

Windows Azure AppFabric Caching Service Released! - Windows Azure AppFabric Team Blog

published 750 days, 23 hours, 4 minutes ago posted by iftekharahmedamitiftekharahmedamit 751 days, 22 hours, 1 minute ago
Wednesday, May 04, 2011 12:54:12 PM GMT Tuesday, May 03, 2011 1:57:40 PM GMT
Recently, at the MIX conference we announced the release of a new version of the Access Control service and the upcoming release of the Caching service. Today we are excited to announce that the Caching service has been released as a production service. The Caching service is a distributed, in-memory, application cache service that accelerates the performance of Windows Azure and SQL Azure applications by allowing you to keep data in-memory and saving you the need to retrieve that data from storage or ... (more)
category: Architecture | clicked: 2 | 1 comment | | source: blogs.msdn.com
tags: Cloud, Windows Azure, Windows Azure AppFabric, Caching, AppFabric, Azure
6
Shouts

Just Released: Windows Azure AppFabric Caching Service - Windows Azure

published 750 days, 23 hours, 4 minutes ago posted by iftekharahmedamitiftekharahmedamit 751 days, 22 hours, 5 minutes ago
Wednesday, May 04, 2011 12:54:12 PM GMT Tuesday, May 03, 2011 1:53:36 PM GMT
In case you missed the news, the Windows Azure AppFabric blog announced on Friday that the Windows Azure AppFabric Caching service is now available as a production service. This service is a distributed, in-memory, application cache service that accelerates the performance of Windows Azure and SQL Azure applications by providing the ability to keep data in-memory, which eliminates the need to retrieve that data from storage or a database. Six different cache size options are available ranging from 128MB... (more)
category: Architecture | clicked: 2 | 1 comment | | source: blogs.msdn.com
tags: Cloud, Windows Azure, Windows Azure AppFabric, Caching, AppFabric, Azure
7
Shouts

Migrate to ASP.NET MVC 3 by leveraging your ASP.NET Web Forms skills - Rachel Appel

published 750 days, 23 hours, 4 minutes ago posted by iftekharahmedamitiftekharahmedamit 751 days, 22 hours, 14 minutes ago
Wednesday, May 04, 2011 12:54:12 PM GMT Tuesday, May 03, 2011 1:44:16 PM GMT
Whenever a new technology or product comes onto the developer scene, people want to know how to best leverage their existing skills to work with it, and nobody wants to have to abandon existing knowledge. Making the move from Web Forms to MVC is no different. Despite the fact that Web Forms & MVC are very different ways of... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: www.rachelappel.com
tags: ASP.NET MVC 3, ASP.NET MVC, Caching, runtime, JavaScript, ASP.NET Web Forms, jQuery, Razor, core, ASP.NET
2
Shouts

33 important .net interview questions on Caching Concepts

posted by questpondquestpond 895 days, 22 hours, 12 minutes ago
Friday, December 10, 2010 1:46:55 PM GMT
This section will cover questions related to Caching Concepts during .net interview by the interviewer so have a look on the following and do revise... (more)
category: Web Dev | clicked: 0 | comment | | source: www.questpond.com
tags: .NET, Caching, Interview Question
6
Shouts

Using ORMs to cache data (Part III): Entity Framework & Good Practices

published 897 days, 3 hours, 35 minutes ago posted by slo2olsslo2ols 898 days, 4 hours, 21 minutes ago
Thursday, December 09, 2010 8:23:21 AM GMT Wednesday, December 08, 2010 7:37:50 AM GMT
In the previous post we looked at the common theory of caching in the NHibernate context. As you noted, the ORM has a well thought-out cache system for avoiding repeated queries to a database without modifying business logic of a destination application. All that you need to do is to config of the ORM. Cool? Definitely. In this post we look at the possibilities of caching data in the Entity Framework. And also to describe the good practices of caching. (more)
category: Architecture | clicked: 4 | comment | | source: osmirnov.net
tags: .NET, Caching, ORM, ASP.NET
5
Shouts

ASP.NET Interview questions Caching , Application and ASP.NET page life cycle - Part 1 ( 5 Questions ).

published 893 days, 18 hours, 13 minutes ago posted by questpondquestpond 898 days, 22 hours, 25 minutes ago
Sunday, December 12, 2010 5:45:49 PM GMT Tuesday, December 07, 2010 1:33:42 PM GMT
Below are Most  important ASP.NET interview questions from caching aspect during .NET Interviews . (more)
category: Web Dev | clicked: 1 | comment | | source: www.questpond.com
tags: Caching, Interview Question, ASP.NET
4
Shouts

Using ORMs to cache data (Part II): Theory of caching & NHibernate

published 902 days, 15 hours, 29 minutes ago posted by slo2olsslo2ols 903 days, 17 hours, 55 minutes ago
Friday, December 03, 2010 8:29:42 PM GMT Thursday, December 02, 2010 6:03:23 PM GMT
So, in the previous post we have looked at a practical example of implementing caching in a web application. And despite the fact that we have achieved our goal, we have left open several questions, which forced us to doubt our approach. In this post we'll find the right answers to these questions, talk about general concepts of caching in ORM and consider how they should NHibernate. (more)
category: Architecture | clicked: 1 | comment | | source: osmirnov.net
tags: .NET, Caching, ORM, ASP.NET
6
Shouts

Caching of, in, and around your Silverlight application (part 3)

published 904 days, 18 hours, 21 minutes ago posted by KMilKMil 905 days, 3 hours, 10 minutes ago
Wednesday, December 01, 2010 5:37:54 PM GMT Wednesday, December 01, 2010 8:48:07 AM GMT
In this third and final part of the series on caching & Silverlight, Kevin Dockx takes a look at the server side of things, and an extra piece of code to throw in the mix: a Silverlight caching provider. (more)
category: Metro | clicked: 0 | comment | | source: www.silverlightshow.net
tags: Caching
4
Shouts

Caching of, in, and around your Silverlight application (part 2)

published 910 days, 9 hours, 29 minutes ago posted by KMilKMil 911 days, 3 hours, 26 minutes ago
Friday, November 26, 2010 2:29:08 AM GMT Thursday, November 25, 2010 8:32:16 AM GMT
In this part, Kevin Dockx explains how you can leverage the Isolated Storage for caching. (more)
category: Metro | clicked: 0 | comment | | source: www.silverlightshow.net
tags: Isolated Storage, Caching
4
Shouts

Using ORMs to cache data (Part I): Practical scenario

published 911 days, 14 hours, 58 minutes ago posted by slo2olsslo2ols 912 days, 17 hours, 18 minutes ago
Wednesday, November 24, 2010 9:00:16 PM GMT Tuesday, November 23, 2010 6:40:21 PM GMT
In the previous post I've already touched upon the issue of caching using ORMs. But since, it's pretty deep and breathtaking topic we will continue to dive into the details. In this series of posts we'll look at real-world scenario of caching in a web application (all patterns and practices also apply to the development of other kinds of applications), the problems confronting the developer, as well as opportunities offered by NHibernate & Entity Framework. (more)
category: Architecture | clicked: 1 | comment | | source: osmirnov.net
tags: .NET, Caching, ORM, ASP.NET
5
Shouts

Caching of, in, and around your Silverlight application (part 1)

published 916 days, 9 hours, 31 minutes ago posted by KMilKMil 917 days, 21 hours, 59 minutes ago
Saturday, November 20, 2010 2:28:02 AM GMT Thursday, November 18, 2010 1:59:42 PM GMT
This is the first in a 3-part series of articles about caching & Silverlight. In it, Kevin Dockx talks about the caching of your Silverlight application itself and Assembly Caching – almost no code is required for this. (more)
category: Metro | clicked: 0 | comment | | source: www.silverlightshow.net
tags: Xap, Caching
5
Shouts

Karandeep Anand: Windows Azure AppFabric Caching | | Channel 9

published 936 days, 14 hours, 24 minutes ago posted by NickolayNickolay 937 days, 21 hours, 5 minutes ago
Saturday, October 30, 2010 9:34:34 PM GMT Friday, October 29, 2010 2:53:16 PM GMT
Curious about the new Caching service running in the Windows Azure Platform? Join Wade Wegner as he talks with Karandeep Anand, Principal Group Program Manager on the Application Platform Services team, about the new service and the different ways you can leverage it within your own applications. The Windows Azure AppFabric Caching service accelerates application performance by providing a distributed, in-memory application cache requiring no installation, configuration, or management. The CTP release o... (more)
category: Screencast | clicked: 0 | comment | | source: channel9.msdn.com
tags: Windows Azure, Caching, AppFabric, Screencast, Azure
3
Shouts

Difference between sliding expiration and absolute expiration

published 941 days, 11 hours, 29 minutes ago posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 941 days, 15 hours, 51 minutes ago
Tuesday, October 26, 2010 12:29:03 AM GMT Monday, October 25, 2010 8:07:27 PM GMT
ASP.net cache is great feature through which we can increase the performance of the our web application via reducing server round trips to database. We can cache any serializable data into the cache. There are so many ways to cache data but one of the simplest way to cache data like insert data into cache object. Here we must need to validate cache if any data is changed and there are so many ways from where we can set dependency to validate the cache like files,SQL Cache Dependency etc. We also can vali... (more)
category: Web Dev | clicked: 1 | comment | | source: jalpesh.blogspot.com
tags: Caching, Cache, ASP.NET
6
Shouts

Dean Hume - Object Caching - .NET 4

published 956 days, 22 hours, 28 minutes ago posted by deanomachinodeanomachino 960 days, 21 hours, 8 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Wednesday, October 06, 2010 2:50:55 PM GMT
Object Caching - .NET 4 As a developer, we need to use all the tools at our disposal to develop faster and more robust applications. One of the ways we can achieve this is by using caching. Caching is the process of storing frequently used data on the server to fulfil subsequent requests. Now there are a few different types of caching available to the .NET developer, but in this article I am going to discuss data caching using the object cache. The cache object enables you to store everything from... (more)
category: Web Dev | clicked: 0 | comment | | source: deanhume.com
tags: Object Caching, System.Runtime, C#, Caching
4
Shouts

Real World Monitoring and Tuning ASP.NET Caching - Steve Smith's Blog

published 971 days, 3 hours, 42 minutes ago posted by iftekharahmedamitiftekharahmedamit 972 days, 3 hours, 34 minutes ago
Sunday, September 26, 2010 8:16:25 AM GMT Saturday, September 25, 2010 8:24:48 AM GMT
First off, let me direct you to a great article on monitoring your ASP.NET cache API behavior.  Go read that first, then come back here. Done?  Good, so let’s make the advice from Simon’s blog a bit more concrete with some real-world examples. Consider this fairly high-traffic web server’s behavior (avg. 55 ASP.NET requests/sec, 110 max, at the moment): Notice how the RAM sort of falls off a cliff, and at that same moment, CPU is much higher than usual?  That’s the behavior we want to diagnose (I’... (more)
category: Web Dev | clicked: 0 | comment | | source: stevesmithblog.com
tags: Caching, ASP.NET
5
Shouts

ASP.NET Output Cache Provider - Gil Fink on .Net

published 1040 days, 1 hour, 35 minutes ago posted by gilfgilf 1041 days, 38 minutes ago
Monday, July 19, 2010 10:24:02 AM GMT Sunday, July 18, 2010 11:20:19 AM GMT
One of the new features that were shipped with ASP.NET 4 was new providers for caching purpose. In this post I’ll explain one of them – the OutputCacheProvider. (more)
category: Web Dev | clicked: 1 | comment | | source: blogs.microsoft.co.il
tags: Caching, output cache, ASP.NET
10
Shouts

Write your own OutputCacheProvider - .NET Development - Gal Ratner

published 1081 days, 1 hour, 9 minutes ago posted by galratnergalratner 1083 days, 7 hours, 39 minutes ago
Tuesday, June 08, 2010 10:49:46 AM GMT Sunday, June 06, 2010 4:19:31 AM GMT
Output caching is a way of caching the generated HTML created from your ASP.NET pages. Output caching can cache an entire page or fragments of a page. The first request to a page is served dynamically, and then any subsequent requests are served from the output cache until the specified time expires. ASP/NET 4.0 adds the ability to plug in your own implementation of output caching. This blog post explains how to do it. (more)
category: Web Dev | clicked: 3 | comment | | source: galratner.com
tags: ASP .NET 4.0, Caching
5
Shouts

The EPiServer CMS Output Cache Explained

published 1136 days, 19 hours, 34 minutes ago posted by http://webpoet.myopenid.com/http://webpoet.myopenid.com/ 1138 days, 4 hours, 35 minutes ago
Tuesday, April 13, 2010 4:24:15 PM GMT Monday, April 12, 2010 7:23:38 AM GMT
When building websites with EPiServer CMS we have two types of caching in our performance toolbox by default, object caching (or data caching) and output caching. In this post I discuss what the two types of caching are. I also explain how the output cache works when using EPiServer CMS and when to use it. (more)
category: Web Dev | clicked: 4 | comment | | source: joelabrahamsson.com
tags: EPiServer, Performance, Caching, EPiServer CMS
Previous 1 2 Next