Stories recently tagged with 'Caching'

Silverlight Cached Assemblies and you can to!(timheuer.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 3 months ago

One of the new features I mentioned in my What’s new/changed post on Silverlight 3 is the fact that any application developer can take advantage of the cached assembly functionality provided by Silverlight. Let me show you how and start with the current situation. read more...

add a comment |category: |Views: 4

tags: another

Memoizer Attribute Using Post Sharp(dpatrickcaldwell.blogspot.com)

submitted by tncbbthositgtncbbthositg(266) 2 years, 11 months ago

You can add this attribute to any method to memoize it. It modifies your complied code to intercept the method call and it checks for a cached result before returning anything. read more...

add a comment |category: |Views: 38

tags: another

Cross-Cutting Concerns should be handled on ALL projects. No Excuses(blog.decayingcode.com)

submitted by arch4ngelarch4ngel(585) 3 years ago

The title say it all. All cross-cutting concerns in a project should be handled or given some thought on ALL PROJECTS. No exceptions. No excuses. read more...

add a comment |category: |Views: 20

tags: another

Caching Roles For Better Site Performance(leedumond.com)

submitted by leedumondleedumond(2139) 3 years, 1 month ago

If you use roles in your ASP.NET application, by default ASP.NET queries the database with every page request in order to fetch the list of roles the current user belongs to. Considering the performance overhead that entails, it's surprising that so many developers forget to enable role caching in their applications. read more...

add a comment |category: |Views: 17

tags: another

Donut Caching in ASP.Net MVC - Revisited by Phil Haack(haacked.com)

submitted by parsa.aminiparsa.amini(329) 3 years, 3 months ago

In this article Phil makes an improvement to the Maarten Balliauw's MVC OutputCache substitution ActionFilter Attribute read more...

add a comment |category: |Views: 291

tags: another

Caching the results of Linq queries (petemontgomery.wordpress.com)

submitted by sumothecatsumothecat(95) 3 years, 6 months ago

Source code and implementation discussion for a "FromCache" extension method which can be applied to any LINQ query. read more...

add a comment |category: |Views: 50

tags: another

Extending ASP.NET MVC OutputCache ActionFilterAttribute - Substitution(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 7 months ago

In this post, Maarten Balliauw explains how to add partial caching (a.k.a. substitution) to his previously created OutputCahce filter for the ASP.NET MVC framework. read more...

add a comment |category: |Views: 103

tags: another

Caching In 10 Minutes(longlostcousins.com)

submitted by usshermussherm(5285) 4 years, 3 months ago

A quick overview of 4 types of caching available to you in an asp.net application: 1. Viewstate, #2. Context, Session, and Application, #3. Cache API, and #4. HTML Output Caching read more...

add a comment |category: |Views: 24

tags: another

Server-side and client-side caching in ASP.NET(blog.madskristensen.dk)

submitted by simonebsimoneb(5450) 4 years, 3 months ago

Mads Kristensen about caching in ASP.NET read more...

add a comment |category: |Views: 248

tags: another

Using the ASP.NET 2.0 SQL Server Cache Dependency(wrox.com)

submitted by findmecoolfindmecool(600) 4 years, 4 months ago

Performance is a key requirement for any application or piece of code that you develop. The browser helps with client-side caching of text and images, whereas the server-side caching you choose to implement is vital for creating the best possible performance. Caching is the process of storing frequently used data on the server to fulfill subsequent requests. You will discover that grabbing objects from memory is much faster than re-creating the Web pages or items contained in them from scratch each time they are read more...

add a comment |category: |Views: 19

tags: another

Caching Application Block : Usage Notes (dotnetwithme.blogspot.com)

submitted by vikasgoyal77vikasgoyal77(550) 4 years, 9 months ago

Caching Application Block : Usage Notes read more...

add a comment |category: |Views: 11

tags: another

Who Needs a Database? How I Built a Fully Functioning Website Without (themicrobusinessexperiment.blogspot.com)

submitted by brb1977brb1977(70) 4 years, 10 months ago

A tutorial about implementing an interactive site with no database backend using flat files, caching and ASP.NET 2.0 read more...

2 comments |category: |Views: 12

tags: another

ASP.Net Quick Tips - Caching (scottwater.com)

submitted by swatermasyskswatermasysk(255) 4 years, 11 months ago

A list of quick tips on asp.net caching. read more...

3 comments |category: |Views: 12

tags: another

Fibonacci Numbers, Caching and Closures(diditwith.net)

submitted by cls2degcls2deg(1535) 5 years ago

In this article, I tinker with the classic Fibonacci number sequence and how to calculate them with lightning fast, thread-safe code using closures in C# 2.0. read more...

1 comment |category: |Views: 24

tags: another

Cache as cache can!(ajdotnet.wordpress.com)

submitted by ajdotnetajdotnet(2940) 5 years ago

What should be cached when and how? read more...

add a comment |category: |Views: 10

tags: another

Inside MySpace(baselinemag.com)

submitted by JemmJemm(9604) 5 years ago

Read the story of the MySpace and how it has grown from "only" few hundred thousands of users to over one hundred million. In the middle they switched from ColdFusion to ASP.NET. The scalability issues with web servers and databases are interesting to read. read more...

2 comments |category: |Views: 8

tags: another