Answers
Redis
的
blpop
提供了阻塞的功能,可以通过这个实现消息队列。
也可以使用
reids
的 发布订阅模式,把数据缓存在
redis
中,更新完毕的时候,
publish
到
channel
,订阅channel接到消息之后更新数据库。
春原阳平_
answered 10 years, 4 months ago
Redis
的
blpop
提供了阻塞的功能,可以通过这个实现消息队列。
也可以使用
reids
的 发布订阅模式,把数据缓存在
redis
中,更新完毕的时候,
publish
到
channel
,订阅channel接到消息之后更新数据库。