您好,登錄后才能下訂單哦!
本篇內容介紹了“laravel怎么解決庫存超出問題”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
數據庫字段
2021-06-08 10:57:59 * @return string */ function test1() { //商品id $id = request()->input('id'); $product = Product::where('id', $id)->firstOrFail(); if ($product->num <= 0) { return "賣光啦!!"; } //庫存減1 $product->decrement('num'); return "success"; }
使用 go 模擬并發
package main import ( "fmt" "github.com/PeterYangs/tools/http" "sync" ) func main() { client := http.Client() wait := sync.WaitGroup{} for i := 0; i < 50; i++ { wait.Add(1) go func(w *sync.WaitGroup) { defer w.Done() res, _ := client.Request().GetToString("http://www.api/test1?id=1") fmt.Println(res) }(&wait) } wait.Wait() }
在數據庫中查看庫存
庫存已超出
2021-06-08 11:00:31 */ function test2() { //商品id $id = request()->input('id'); $lock = \Cache::lock("product_" . $id, 10); try { //最多等待5秒,5秒后未獲取到鎖,則拋出異常 $lock->block(5); $product = Product::where('id', $id)->firstOrFail(); if ($product->num <= 0) { return "賣光啦!!"; } //庫存減1 $product->decrement('num'); return 'success'; }catch (LockTimeoutException $e) { return '當前人數過多'; } finally { optional($lock)->release(); } }
庫存正常
2021-06-08 11:00:47 */ function test3() { //商品id $id = request()->input('id'); try { \DB::beginTransaction(); $product = Product::where('id', $id)->lockForUpdate()->first(); if ($product->num <= 0) { return "賣光啦!!"; } //庫存減1 $product->decrement('num'); \DB::commit(); return "success"; } catch (\Exception $exception) { } }
庫存正常
2021-06-08 11:00:47 */ function test4() { //商品id $id = request()->input('id'); $product = Product::where('id', $id)->first(); if ($product->num <= 0) { return "賣光啦!!"; } //修改前檢查庫存和之前是否一致,不一致說明已經有變動,則放棄更改 $res = \DB::update('UPDATE `product`, [$id, $product->num]); if (!$res) { return '當前人數過多'; } return 'success'; }
庫存正常
優化樂觀鎖
修改庫存的 sql 修改為
\DB::update('UPDATE `product`, [$id]);
2021-06-15 15:18:31 * @return string */ function test5() { //商品id $id = request()->input('id'); $num = Redis::command('get', ['product_' . $id]); if ($num <= 0) { return "賣完啦!"; } //減庫存 $re = Redis::command('decrby', ['product_' . $id, 1]); //減多了回滾 if ($re < 0) { Redis::command('incrby', ['product_' . $id, 1]); return "賣完啦!"; } return 'success'; }
“laravel怎么解決庫存超出問題”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。