8

可能重复:
ASP.NET 缓存最大大小

我正在使用 asp.net 缓存(流式代码)缓存很多数据表:

HttpContext.Current.Cache.Insert(GlobalVars.Current.applicationID + "_" + cacheName, itemToCache, null, System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(240));

但是我认为服务器上的缓存已经满了,不得不从数据库中重新获取数据表数据。可以在服务器上缓存的数据量或可以调整的任何 IIS 设置是否有任何限制?

4

3 回答 3

13

有一种方法可以升级限制,但我强烈建议您使用其他类型的缓存系统(更多信息请参见下文)。

.NET 缓存

要了解有关 .NET 缓存限制的更多信息,请阅读来自Microsoft .NET 团队成员的出色回答

如果您想查看 .NET Cache 的当前限制,可以尝试:

var r = new Dictionary<string, string>();

using (var pc = new PerformanceCounter("ASP.NET Applications", "Cache % Machine Memory Limit Used", true))
{
    pc.InstanceName = "__Total__";
    r.Add("Total_MachineMemoryUsed", String.Concat(pc.NextValue().ToString("N1"), "%"));
}
using (var pc = new PerformanceCounter("ASP.NET Applications", "Cache % Process Memory Limit Used", true))
{
    pc.InstanceName = "__Total__";
    r.Add("Total_ProcessMemoryUsed", String.Concat(pc.NextValue().ToString("N1"), "%"));
}
using (var pc = new PerformanceCounter("ASP.NET Applications", "Cache API Entries", true))
{
    pc.InstanceName = "__Total__";
    r.Add("Total_Entries", pc.NextValue().ToString("N0"));
}
using (var pc = new PerformanceCounter("ASP.NET Applications", "Cache API Misses", true))
{
    pc.InstanceName = "__Total__";
    r.Add("Total_Misses", pc.NextValue().ToString("N0"));
}
using (var pc = new PerformanceCounter("ASP.NET Applications", "Cache API Hit Ratio", true))
{
    pc.InstanceName = "__Total__";
    r.Add("Total_HitRatio", String.Concat(pc.NextValue().ToString("N1"), "%"));
}
using (var pc = new PerformanceCounter("ASP.NET Applications", "Cache API Trims", true))
{
    pc.InstanceName = "__Total__";
    r.Add("Total_Trims", pc.NextValue().ToString());
}

内存缓存

我目前正在使用Memcached,如果您将网站托管在某个地方,则可以使用以下付费服务:

或者,如果您使用自己的服务器,您可以下载Couchbase 社区版并托管我们自己的服务器。

您会在这里找到更多关于 MemCache 使用的问题,例如:

为任何缓存系统腾出空间

要在不更改代码的情况下使用其他缓存系统,您可以采用创建一个接口,例如

public interface ICacheService
{
    T Get<T>(string cacheID, Func<T> getItemCallback) where T : class;
    void Clear();
}

那么您是否正在使用.NET Cache,您的实现将类似于

public class InMemoryCache : ICacheService
{
    private int minutes = 15;

    public T Get<T>(string cacheID, Func<T> getItemCallback) where T : class
    {
        T item = HttpRuntime.Cache.Get(cacheID) as T;
        if (item == null)
        {
            item = getItemCallback();
            HttpRuntime.Cache.Insert(
                cacheID,
                item,
                null,
                DateTime.Now.AddMinutes(minutes),
                System.Web.Caching.Cache.NoSlidingExpiration);
        }
        return item;
    }

    public void Clear()
    {
        IDictionaryEnumerator enumerator = HttpRuntime.Cache.GetEnumerator();

        while (enumerator.MoveNext())
            HttpRuntime.Cache.Remove(enumerator.Key.ToString());
    }
}

你会用它作为:

string cacheId = string.Concat("myinfo-", customer_id);
MyInfo model = cacheProvider.Get<MyInfo>(cacheId, () =>
{
    MyInfo info = db.GetMyStuff(customer_id);
    return info;
});

如果您使用的是 Memcached,您需要做的就是创建一个新类,ICacheService通过使用 IoC 或直接调用来实现并选择您想要的类:

private ICacheService cacheProvider;

protected override void Initialize(System.Web.Routing.RequestContext requestContext)
{
    if (cacheProvider == null) cacheProvider = new InMemoryCache();

    base.Initialize(requestContext);
}
于 2012-12-26T23:57:45.190 回答
4

缓存使用工作进程的内存分配。默认情况下,工作进程被允许获得 60% 的机器内存以完成其工作。

根据链接,这可以通过编辑 machine.config 文件进行更改,以允许工作进程使用更多的机器内存。大概您已经构建了缓存,以便在检测到数据过时时已经更新,因此这应该允许您将更多对象放入缓存中。

于 2012-12-26T23:44:45.243 回答
3

将项目插入缓存时,添加一个 CacheItemRemovedCallback 方法。

在回调日志中,项目被删除的原因。通过这种方式,您可以查看是内存压力还是其他问题。

public static void OnRemove(string key, 
   object cacheItem, 
   System.Web.Caching.CacheItemRemovedReason reason)
   {
      AppendLog("The cached value with key '" + key + 
            "' was removed from the cache.  Reason: " + 
            reason.ToString()); 
}

http://msdn.microsoft.com/en-us/library/aa478965.aspx

于 2012-12-26T23:46:40.033 回答