标签:toc 消耗cpu object memcache protocol googl protoc create 存储
2、把对象Object存储到redis中,怎么存?memcache存取对象是序列化和反序列化
使用通用的序列化、反序列化(频繁的会很消耗cpu,使用Google Protocol Buffer,将对象打成二
进制流)
或者使用json存储(阿里巴巴的fast-json)
3.作为缓存框架:
create/updae/delete---同时存到redis和数据库
query--先从redis查,没有记录才从数据库查,并把从数据库查的结果也放一份到redis
标签:toc 消耗cpu object memcache protocol googl protoc create 存储
原文地址:http://www.cnblogs.com/panxuejun/p/6225303.html