应用程序缓存和慢速进程

时间:2013-06-06 11:38:55

标签: asp.net caching webforms

我想使用应用程序缓存在ASP.net 3.5网站上创建应用程序范围的源。我用来填充缓存的数据很慢,可能长达10秒(来自远程服务器的数据源)。我的疑问/困惑是,构建缓存管理的最佳方法是什么。

private const string CacheKey = "MyCachedString";
private static string lockString = "";

public string GetCachedString()
{
    string data = (string)Cache[CacheKey];
    string newData = "";

    if (data == null)
    {
        // A - Should this method call go here?
        newData = SlowResourceMethod();

        lock (lockString)
        {
            data = (string)Cache[CacheKey];

            if (data != null)
            {
               return data;
            }

            // B - Or here, within the lock?
            newData = SlowResourceMethod();
            Cache[CacheKey] = data = newData;
        }
    }

    return data;
}

实际方法将由HttpHandler(.ashx)提供。

如果我在点'A'收集数据,我会将锁定时间缩短,但最终可能会多次调用外部资源(从所有尝试引用Feed的网页)。如果我把它放在'B'点,那么锁定时间会很长,我假设它是一件坏事。

最好的方法是什么,或者我可以使用哪种更好的模式?

任何建议都将受到赞赏。

1 个答案:

答案 0 :(得分:1)

我在代码上添加了注释。

private const string CacheKey = "MyCachedString";
private static readonly object syncLock = new object();

public string GetCachedString()
{
    string data = (string)Cache[CacheKey];
    string newData = "";

    // start to check if you have it on cache
    if (data == null)
    {
        // A - Should this method call go here?
        // absolut not here
        // newData = SlowResourceMethod();

        // we are now here and wait for someone else to make it or not
        lock (syncLock)
        {
            // now lets see if some one else make it...
            data = (string)Cache[CacheKey];

            // we have it, send it
            if (data != null)
            {
               return data;
            }

            // not have it, now is the time to look for it.
            // B - Or here, within the lock?
            newData = SlowResourceMethod();
            // set it on cache
            Cache[CacheKey] = data = newData;
        }
    }

    return data;
}

对我来说更好的是使用mutex并锁定名称CacheKey并且不锁定所有资源和非相对资源。使用互斥锁,一个基本的简单示例将是:

private const string CacheKey = "MyCachedString";
public string GetCachedString()
{
    string data = (string)Cache[CacheKey];
    string newData = "";

    // start to check if you have it on cache
    if (data == null)
    {
        // lock it base on resource key 
        //  (note that not all chars are valid for name)
        var mut = new Mutex(true, CacheKey);

        try
        {   
            // Wait until it is safe to enter.
            // but also add 30 seconds max
            mut.WaitOne(30000);

            // now lets see if some one else make it...
            data = (string)Cache[CacheKey];

            // we have it, send it
            if (data != null)
            {
               return data;
            }

            // not have it, now is the time to look for it.
            // B - Or here, within the lock?
            newData = SlowResourceMethod();
            // set it on cache
            Cache[CacheKey] = data = newData;

        }
        finally
        {
            // Release the Mutex.
            mut.ReleaseMutex();
        }    
    }

    return data;
}

你也可以阅读
Image caching issue by using files in ASP.NET