memcached是分布式缓存,现在想利用它和wcf结合实现一个缓存服务cacheservice
问题是
wcf不能进行泛型的支持,该怎么解决,例如
public interface ICacheStorage
{
void Remove(string key);
void Store
2013-07-26 08:27 "@zdp120
"的内容
现在能想到的就是把缓存的data转换成byte[], ...
这实际是序列化,降低性能不好,弄个转接器Adapter是可以的。