首页 > 其他 > 详细

ServiceStack.Redis常用操作 - 事务、并发锁

时间:2014-11-13 18:42:26      阅读:403      评论:0      收藏:0      [点我收藏+]

一、事务

  使用IRedisClient执行事务示例:

bubuko.com,布布扣
    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)); 

            IRT.Commit(); // 提交事务
        }
        Response.Write(RClient.Get<string>("key"));
    }
bubuko.com,布布扣

 

二、并发锁

  使用IRedisClient申请锁示例:

bubuko.com,布布扣
    using (IRedisClient RClient = prcm.GetClient())
    {
        RClient.Add("mykey",1);
        // 支持IRedisTypedClient和IRedisClient
        using (RClient.AcquireLock("testlock")) 
        {
            Response.Write("申请并发锁<br/>");
            var counter = RClient.Get<int>("mykey");

            Thread.Sleep(100);

            RClient.Set("mykey", counter + 1);
            Response.Write(RClient.Get<int>("mykey"));
        }
    }
bubuko.com,布布扣

 

ServiceStack.Redis常用操作 - 事务、并发锁

原文:http://www.cnblogs.com/YuanZhaoBest/p/4095531.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!