1

我正在尝试缓存从 WCF 中的 SQL Server 检索到的动态列表,到目前为止,检索过程工作正常,并且我已经对其进行了测试,并且完全没有问题,问题是当我尝试缓存时检索列表,发生错误,我无法找出其背后的原因。

这是我的方法:

public List<ErrorEntities> GetALL()
{
            List<ErrorEntities> res = null;
            if (HttpContext.Current.Cache["GetALL"] == null)
            {
                SqlCommand com = Global.GetCommand("select * from [BlockingList]");
                com.Connection.Open();
                SqlDataReader reader = com.ExecuteReader();
                res = Fill(reader);

                HttpContext.Current.Cache.Add("GetALL", res, null, DateTime.Now.Add(new TimeSpan(0, 0, 15)), Cache.NoSlidingExpiration, CacheItemPriority.Normal, null);

                com.Connection.Close();
                return res;
            }
            else
            {
                res = HttpRuntime.Cache["GetALL"] as List<ErrorEntities>;
                return res;
            }
}

我尝试通过添加以下代码行来启用 web.config 文件上的缓存,但问题也没有解决:

<scriptResourceHandler enableCompression="true"    enableCaching="true" />

这是我在编译解决方案时遇到的错误:

由于内部错误,服务器无法处理请求。有关错误的更多信息,请在服务器上打开 IncludeExceptionDetailInFaults(来自 ServiceBehaviorAttribute 或来自配置行为)以便将异常信息发送回客户端,或根据 Microsoft .NET Framework 3.0 SDK 文档打开跟踪并检查服务器跟踪日志。

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more

有关错误的信息以及它在代码中的来源。

Exception Details: System.ServiceModel.FaultException: The server was unable to process the request due to an internal error.  For more

有关错误的信息,请在服务器上打开 IncludeExceptionDetailInFaults(来自 ServiceBehaviorAttribute 或来自配置行为)以便将异常信息发送回客户端,或根据 Microsoft .NET Framework 3.0 SDK 文档打开跟踪并检查服务器跟踪日志。

Source Error: 


Line 113:        
Line 114:        public ServiceReference1.ErrorEntities[] GetALL() {
Line 115:            return base.Channel.GetALL();
Line 116:        }
Line 117:
4

1 回答 1

1

我假设有问题的代码在 WCF 方法中被调用。

WCF 在其自己的上下文中工作,HttpContext.Current不应在那里使用。

System.WebMicrosoft在 .NET 4.0 中添加了不依赖的新缓存。

MemoryCache在 WCF 中应该可以正常工作。

尝试使用此代码获取缓存对象:

ObjectCache cache = MemoryCache.Default;

http://msdn.microsoft.com/en-us/library/system.runtime.caching.memorycache.aspx

我还建议对一次性资源使用using或阻止(在代码示例中)try-finallyConnection

于 2012-06-12T15:28:59.597 回答