六月婷婷综合激情-六月婷婷综合-六月婷婷在线观看-六月婷婷在线-亚洲黄色在线网站-亚洲黄色在线观看网站

明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

Redis的事務(wù)設(shè)置的命令與執(zhí)行設(shè)置(代碼)

[摘要]本篇文章給大家?guī)淼膬?nèi)容是關(guān)于Redis的事務(wù)操作的命令與執(zhí)行操作(代碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。序本文主要研究一下redis的事務(wù)操作命令multi與exe...
本篇文章給大家?guī)淼膬?nèi)容是關(guān)于Redis的事務(wù)操作的命令與執(zhí)行操作(代碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。

本文主要研究一下redis的事務(wù)操作

命令

multi與exec

  • 命令行

127.0.0.1:6379> multi
OK
127.0.0.1:6379> incr total
QUEUED
127.0.0.1:6379> incr len
QUEUED
127.0.0.1:6379> exec
1) (integer) 2
2) (integer) 2
127.0.0.1:6379> get total
"2"
127.0.0.1:6379> get len
"2"
  • lettuce實(shí)例

    @Test
    public void testMultiExec(){
        RedisClient client = RedisClient.create("redis://192.168.99.100:6379/0");
        StatefulRedisConnection<String, String> connection = client.connect();
        RedisCommands<String, String> syncCommands = connection.sync();

        syncCommands.set("hello","1");
        syncCommands.set("world","2");

        syncCommands.multi();
        syncCommands.incr("hello");
        syncCommands.incr("world");

        //DefaultTransactionResult[wasRolledBack=false,result=[1, 2, 1, 3, 1]]
        TransactionResult transactionResult = syncCommands.exec();
        System.out.println(transactionResult);
        System.out.println(syncCommands.get("hello"));
        System.out.println(syncCommands.get("world"));
    }

部分執(zhí)行

  • 命令行

127.0.0.1:6379> multi
OK
127.0.0.1:6379> set a hello
QUEUED
127.0.0.1:6379> set b world
QUEUED
127.0.0.1:6379> incr a
QUEUED
127.0.0.1:6379> set c part
QUEUED
127.0.0.1:6379> exec
1) OK
2) OK
3) (error) ERR value is not an integer or out of range
4) OK
127.0.0.1:6379> get a
"hello"
127.0.0.1:6379> get b
"world"
127.0.0.1:6379> get c
"part"
  • lettuce實(shí)例

    @Test
    public void testMultiExecError(){
        RedisClient client = RedisClient.create("redis://192.168.99.100:6379/0");
        StatefulRedisConnection<String, String> connection = client.connect();
        RedisCommands<String, String> syncCommands = connection.sync();

        syncCommands.multi();
        syncCommands.set("a","hello");
        syncCommands.set("b","world");
        syncCommands.incr("a");
        syncCommands.set("c","part");
        //DefaultTransactionResult[wasRolledBack=false,result=[OK, OK, io.lettuce.core.RedisCommandExecutionException: ERR value is not an integer or out of range, OK, 1]]
        TransactionResult transactionResult = syncCommands.exec();
        System.out.println(transactionResult);
        System.out.println(syncCommands.get("a"));
        System.out.println(syncCommands.get("b"));
        System.out.println(syncCommands.get("c"));
    }

multi與discard

  • 命令行

127.0.0.1:6379> set sum 1
OK
127.0.0.1:6379> multi
OK
127.0.0.1:6379> incr sum
QUEUED
127.0.0.1:6379> discard
OK
127.0.0.1:6379> get sum
"1"
  • lettuce實(shí)例

    @Test
    public void testMultiDiscard(){
        RedisClient client = RedisClient.create("redis://192.168.99.100:6379/0");
        StatefulRedisConnection<String, String> connection = client.connect();
        RedisCommands<String, String> syncCommands = connection.sync();
        syncCommands.incr("key1");
        syncCommands.multi();
        syncCommands.incr("key1");
        //需要有multi才可以執(zhí)行discard,成功返回OK
        String result = syncCommands.discard();
        System.out.println(result);
        System.out.println(syncCommands.get("key1"));
    }

check and set

    @Test
    public void testWatch(){
        RedisClient client = RedisClient.create("redis://192.168.99.100:6379/0");
        StatefulRedisConnection<String, String> connection = client.connect();
        RedisCommands<String, String> syncCommands = connection.sync();

        String key = "key";
        syncCommands.watch(key);

        //another connection
        StatefulRedisConnection<String, String> conn2 = client.connect();
        RedisCommands<String, String> syncCommands2 = conn2.sync();
        syncCommands2.set(key, "a");

        syncCommands.multi();
        syncCommands.append(key, "b");
        //DefaultTransactionResult [wasRolledBack=true, responses=0]
        TransactionResult transactionResult = syncCommands.exec();
        System.out.println(transactionResult);

        System.out.println(syncCommands.get(key));
    }

小結(jié)

  • reids提供multi exec/discard指令,類似open commit/rollback transaction,不過exec遇到類型操作等錯(cuò)誤時(shí)不會(huì)滾,該成功執(zhí)行的命令還是成功執(zhí)行,該失敗的還是失敗

  • multi exec保證的是,只要exec命令有執(zhí)行成功,則事務(wù)中一系列的命令都能執(zhí)行,如果exec因?yàn)榫W(wǎng)絡(luò)等問題,server端沒有接收到,則事務(wù)中的一系列命令都不會(huì)被執(zhí)行

  • discard需要在有調(diào)用multi的前提下才能使用,該命令會(huì)清空事務(wù)隊(duì)列等待執(zhí)行的命令

  • redis提供watch指令,可以配合multi exec來使用,可以實(shí)現(xiàn)類似數(shù)據(jù)庫的樂觀鎖的機(jī)制,一旦watch的key被其他client有更新,則整個(gè)exec操作失敗

以上就是Redis的事務(wù)操作的命令與執(zhí)行操作(代碼)的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


學(xué)習(xí)教程快速掌握從入門到精通的SQL知識(shí)。




主站蜘蛛池模板: 日韩伦理视频在线观看 | 日韩成人在线免费视频 | 四虎国产精品免费久久影院 | 午夜免费啪视频观看网站 | 综合色99| 亚洲欧洲综合 | 青青青爽线在线视频观看 | 五月天色网址 | 日韩福利影视 | 青娱乐在线视频观看 | 中文字幕波多野不卡一区 | 青青青青爽极品在线视频 | 一级黄色在线视频 | 亚洲免费二区 | 伊人9| 亚洲欧美久久婷婷爱综合一区天堂 | 亚洲视频在线播放 | 午夜小视频在线观看 | 一区二区三区视频免费观看 | 午夜激情福利网 | 亚洲视频在线观看一区 | 亚洲黄视频在线观看 | 午夜美女网站 | 亚洲综合激情网 | 日本高清www视频在线观看 | 日韩精品一区二区三区中文在线 | 天堂福利在线 | 日韩精品特黄毛片免费看 | 一区二区精品久久 | 亚洲日本欧美在线 | 欧美性专区 | 亚洲爽视频 | 中文字幕乱视频 | 天天天狠天天透天天制色 | 亚洲女人天堂 | 亚洲欧美成aⅴ人在线观看 亚洲欧美不卡 | 一区二区免费 | 特a级黄色片 | 亚洲视频综合 | 婷婷色爱区综合五月激情韩国 | 深夜福利成人 |