摘要:
一、事务 使用IRedisClient执行事务示例: using (IRedisClient RClient = prcm.GetClient()) { RClient.Add("key",1); using (IRedisTransaction IRT = RClient.CreateTransaction()) { IRT.QueueCommand(r => r.Set("key", 20)); IRT.QueueCommand(r => r.Increment("key",1)); ... 阅读全文
posted @ 2014-03-18 18:57
逆心
阅读(9591)
评论(4)
推荐(0)
浙公网安备 33010602011771号