Redis使用watch完成秒殺搶購功能的代碼

來源:互聯網
上載者:User
這篇文章主要介紹了關於Redis使用watch完成秒殺搶購功能的代碼,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

redis使用watch完成秒殺搶購功能:

使用redis中兩個key完成秒殺搶購功能,mywatchkey用於儲存搶購數量和mywatchlist使用者儲存搶購列表。

它的優點如下:

1. 首先選用記憶體資料庫來搶購速度極快。

2. 速度快並發自然沒不是問題。

3. 使用悲觀鎖,會迅速增加系統資源。

4. 比隊列強的多,隊列會使你的記憶體資料庫資源瞬間爆棚。

5. 使用樂觀鎖,達到綜合需求。

我覺得以下代碼肯定是你想要的。

<?php header("content-type:text/html;charset=utf-8"); $redis = new redis(); $result = $redis->connect('10.10.10.119', 6379); $mywatchkey = $redis->get("mywatchkey"); $rob_total = 100;  //搶購數量 if($mywatchkey<$rob_total){   $redis->watch("mywatchkey");   $redis->multi();   //設定延遲,方便測試效果。   sleep(5);   //插入搶購資料   $redis->hSet("mywatchlist","user_id_".mt_rand(1, 9999),time());   $redis->set("mywatchkey",$mywatchkey+1);   $rob_result = $redis->exec();   if($rob_result){     $mywatchlist = $redis->hGetAll("mywatchlist");     echo "搶購成功!<br/>";     echo "剩餘數量:".($rob_total-$mywatchkey-1)."<br/>";     echo "使用者列表:<pre>";     var_dump($mywatchlist);   }else{     echo "手氣不好,再搶購!";exit;   } } ?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.