redis事物的使用

來源:互聯網
上載者:User

標籤:

redis的幾個事物命令:

WATCH 監視一個(或多個) key ,如果在事務執行之前這個(或這些) key 被其他命令所改動,那麼事務將被打斷;
UNWATCH 取消 WATCH 命令對所有 key 的監視;
MULTI 標記一個事務塊的開始,指事務塊內的多條命令會按照先後順序被放進一個隊列當中,最後由EXEC命令原子性(atomic)地執行;
DISCARD 取消事務,放棄執行事務塊內的所有命令;
EXEC 執行所有事務塊內的命令;

phpredis的實現方式:

事務的調用有兩種模式Redis::MULTI和Redis::PIPELINE,預設是Redis::MULTI模式,Redis::PIPELINE管道模式速度更快,但沒有任何保證原子性有可能造成資料的丟失。

程式碼範例:

<?php$redis = new Redis();$redis->connect(‘127.0.0.1‘, 6379);$startTime = microtimeFloat();$pipe = $redis->multi(Redis::PIPELINE);for($i = 0; $i < 100000; $i++){    $pipe->set("key::$i", time());    $pipe->get("key::$i");}$pipe->exec();//$redis->flushDB();$endTime = microtimeFloat();$runTime = $endTime - $startTime;echo "用時 $runTime 秒";function microtimeFloat(){    list($usec, $sec) = explode(" ", microtime());    return ((float)$usec + (float)$sec);}?>


redis事物的使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.