4

我在 .svc 文件中使用以下代码创建了一个非常基本的 WCF 服务应用程序:

using System.Collections.Generic;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.ServiceModel.Web;

namespace NamesService
{
    [ServiceContract]
    [ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
    [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
    public class NamesService
    {
        List<string> Names = new List<string>();

        [OperationContract]
        [AspNetCacheProfile("CacheFor60Seconds")]
        [WebGet(UriTemplate="")]
        public List<string> GetAll()
        {
            return Names;
        }

        [OperationContract]
        public void Save(string name)
        {
            Names.Add(name);
        }
    }
 }

web.config 看起来像这样:

<?xml version="1.0"?>
<configuration>
<system.web>
    <compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
    <behaviors>
        <serviceBehaviors>
            <behavior>
                <serviceMetadata httpGetEnabled="true"/>
                <serviceDebug includeExceptionDetailInFaults="false"/>
            </behavior>
        </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" aspNetCompatibilityEnabled="true" />
</system.serviceModel>
<system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
<system.web>
    <caching>
        <outputCache enableOutputCache="true"/>
        <outputCacheSettings>
            <outputCacheProfiles>
                <add name="CacheFor60Seconds" location="Server" duration="60" varyByParam="" />
            </outputCacheProfiles>
        </outputCacheSettings>
    </caching>
</system.web>

如您所见,GetAll 方法已使用 AspNetCacheProfile 进行修饰,并且 cacheProfileName 指的是 web.config 的“ChacheFor60Seconds”部分。

我在 WCF 测试客户端中运行以下序列:

1) 使用参数“Fred”调用 Save

2) Call GetAll -> "Fred" 按预期返回。

3) 使用参数“Bob”调用 Save

4) 调用 GetAll -> 这次返回“Fred”和“Bob”。

我期望在第二次调用 GetAll 时只返回“Fred”,因为它应该返回步骤 (2) 中的缓存结果。

我无法弄清楚问题是什么,所以请提供一些帮助。

4

2 回答 2

1

您正在尝试缓存没有任何参数的完整结果,因此您的设置应该是

 <outputCacheSettings>
    <outputCacheProfiles>
        <add name="CacheFor60Seconds" location="Server" duration="60"
        varyByParam="none" />
    </outputCacheProfiles>
 </outputCacheSettings> 

编辑:

[OperationContract]
[AspNetCacheProfile("CacheFor60Seconds")]
[WebGet]
public List<string> GetAll()
{
    return Names;
}
于 2012-06-03T22:15:02.877 回答
0

您的web.config配置文件有一个双节<system.web>,尝试合并它们。

于 2014-04-29T12:24:48.847 回答