我想在我的服务中使用内存缓存但无法配置它。我已经global.asax
按照说明注册了。
这是我的服务的外观:
public class CustomerSerivce: Service
{
public CustomerResponse Any(Customer customer)
{
//code to connect to db here - this code is called regardless of cache entry
return customer;
}
}
我知道那里有this.RequestContext.ToOptimized
什么东西,但有些东西对我不起作用。
提前致谢。