Heim > Artikel > PHP-Framework > Laravel Lotterie-Flash-Sale-Lösung mit hoher Parallelität
Die folgende Tutorial-Kolumne von Laravel bietet Ihnen eine Laravel-Lotto-Flash-Sale-Lösung mit hoher Parallelität. Ich hoffe, dass sie Freunden in Not hilfreich sein wird!
<code><span style="font-size: 16px;">8核16G</span>
8 Core 16G Server<span style="font-size: 16px;">Jmeter</span>
<span style="font-size: 16px;">Jmeter</span>
<span style="font-size: 16px;">2000</span>
Parallelität
Hinweis1000
<span style="font-size: 16px;">1000</span>
Do Aus Netzwerkgründen ist es normal, die Parallelität
1. MySQL-Shared-Lock-Version
<?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'); } }
$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); }
<span style="font-size: 16px;">lpush</span>
1.<li>lpush<span style="font-size: 16px;"></span>
</li>
Warteschlange beitreten<span style="font-size: 16px;">lpop</span>
<span style="font-size: 16px;">null</span>
2.
Das obige ist der detaillierte Inhalt vonLaravel Lotterie-Flash-Sale-Lösung mit hoher Parallelität. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!