ホームページ > 記事 > PHPフレームワーク > laravelの高同時実行性宝くじフラッシュセールソリューション
##8 コア 16G
# サーバー##Jmeter
2000<span style="font-size: 16px;"></span>テストしないでくださいネットワーク上の理由により、このマシンをロックせずに
1000<span style="font-size: 16px;"></span> の同時実行性をテストするのが通常です。 Alibaba Cloud でテスト マシンを購入できます
<span style="font-size: 16px;">1.mysql 共有ロック バージョン</span>
移行ファイル
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateStockTestTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('stock_test', function (Blueprint $table) { $table->increments('id'); $table->integer('stock')->default(0)->comment('库存1'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('stock_test'); } }<span style="font-size: 16px;">コード</span>
$model = new \App\Models\StockTest(); $id = $request->input('id',1); try { // 手动开始事务 DB::beginTransaction(); // sql加共享锁,stock字段减1。返回成功表示成功,返回失败表示自减失败。stock字段是无符号的 $is = DB::table('stock_test')->lockForUpdate()->increment('stock',-1); if($is) { log_info('id='.$id.'库存减1'); // 提交事务 DB::commit(); return response('成功',200); } else { return response('失败',201); } } catch (\Exception $exception) { // 回滚事务 DB::rollBack(); return response('失败',201); }2 .reids キュー
#キューに参加
2.
以上がlaravelの高同時実行性宝くじフラッシュセールソリューションの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。