What Are the Patterns and Best Practices for Caching in ASP.NET?

前端 未结 3 1375
花落未央
花落未央 2020-12-23 00:22

We are working on a large legacy application and we\'re redesigning the business layer and the data layer. We believe that it is a good time to redesign the way cache is han

相关标签:
3条回答
  • 2020-12-23 00:32

    The MS Patterns and Practices team created Enterprise Library as their response to this question for a host of commone scenarios. EntLib includes Caching as well as Data Access, Validation, Logging, Exception handling, etc. We've used it for years and wouldn't think of starting a new project without it.

    http://www.codeplex.com/entlib

    As well as the P&P home page, http://msdn.microsoft.com/en-us/practices/default.aspx

    0 讨论(0)
  • 2020-12-23 00:41

    This is a big subject, but here are a few suggestions:

    1. Don't cache data that's unlikely to be reused, such as user-specific data
    2. Cache at all tiers: client, Silverlight (isolated storage), proxies, http.sys, IIS, ASP.NET cache object, ASP.NET per-request cache, SQL Server
    3. Use SqlDependency / SqlCacheDependency when you can, but don't over-use
    4. Avoid session state; use cookies instead when you can
    5. Leverage page and control (fragment) output caching
    6. Consider using cache validation when needed
    7. Consider light-weight alternatives to the ASP.NET cache object, such as weak memory refs
    8. When used correctly, SQL Server can act as a large cache

    In case it helps, I cover this subject in detail in my book: Ultra-Fast ASP.NET.

    0 讨论(0)
  • 2020-12-23 00:44
    • Just save every queryresult to the database (with cache key: your query, value: your list of business objects)
    • Use distributed cache like memcached next to ASP.Net cache
    • Use a sophisticated cachemanager like https://github.com/enyim/memcached-providers; that can have cache-groups. Some data has to be stored for a long time, some short time. Some data has to be stored in ASP.Net cache, etc.
    • Do calls that has to be stored in the cache using a wrapper function like public T GetFromCache<T>(string key, Func<T> ifKeyNotFoundDelegate) to ensure that cache is always used the same. [1]
    • Think of when to use ASP.Net cache, and when to use distributed cache. Data that is read every request should be stored in ASP.Net, large data like search results; with a lot of different keys and data etc. should be in memcached.
    • Add versioning. Prefix all keys with a versionnumber, so you won't get in trouble when updating your web application, and some objectcontracts change.

    Ah well, that covers most of what we do in our website (20GB memcached cluster spread over 20 servers).

    [1] By making such a function the only interface to store stuff in cache, you can achieve the following. Let's say I want to use something from the cache, like the result from a function. Normally you would do something like

    CacheManager cm = new CacheManager(CacheGroups.Totals);
    object obj = cm.GetFromCache("function1result");
    if(obj == null)
    {
        obj = (object)DAO.Foo();
        cm.StoreInCache("function1result", obj);
    }
    return (List<MyEntity>)obj;
    

    By using a different interface you can ensure that users won't make a mistake here.

    Like

    public T GetFromCache<T>(string key, Func<T> ifnotfound)
    {
        T obj = this.GetFromCache(key) as T;
        if(obj == default(T)) 
        { 
             obj = ifnotfound.Invoke();
             this.StoreInCache(key, obj);
        }
        return obj;
    }
    

    This ensures that

    1. We always work with the correct type
    2. That your user always work with cache the same way

    Ergo: less probable that they make a mistake. Furthermore: you get nicer, more clear, code, like:

    List<MyEntity> list = new CacheManager(CacheGroups.Total).GetFromCache<List<MyEntity>>("function1result", ()=>DAO.Foo());
    
    0 讨论(0)
提交回复
热议问题