8核16G
的服务器Jmeter
并发2000
注意1.MysqL共享锁版不要在一台机子上测,因为网络的原因,本机上测并发
1000
不用锁也是正常的。可以在阿里云买台测试机
迁移文件sql加共享锁,stock字段减1。返回成功表示成功,返回失败表示自减失败。stock字段是无符号的
<?PHPuse 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);}2.reIDs队列1.
lpush
加入队列2.lpop
d窗队列,成功返回对应值,不存在返回null
总结 以上是内存溢出为你收集整理的laravel高并发之抽奖秒杀解决方案全部内容,希望文章能够帮你解决laravel高并发之抽奖秒杀解决方案所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)