snower/phslock
Composer 安装命令:
composer require snower/phslock
包简介
High-performance distributed shared lock service php client
README 文档
README
High-performance distributed sync service and atomic DB. Provides good multi-core support through lock queues, high-performance asynchronous binary network protocols. Can be used for spikes, synchronization, event notification, concurrency control. https://github.com/snower/slock
Install
composer require snower/phslock
Event
<?php namespace App\Console\Commands; use Illuminate\Console\Command; use Snower\Phslock\Laravel\Facades\Phslock; class TestSlockEvent extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'test:slock-event'; /** * The console command description. * * @var string */ protected $description = 'Command description'; /** * Create a new command instance. * * @return void */ public function __construct() { parent::__construct(); } /** * Execute the console command. * * @return int */ public function handle() { $event = Phslock::Event("test", 5, 120, false); $event->set(); return 0; } }
License
slock uses the MIT license, see LICENSE file for the details.
统计信息
- 总下载量: 99
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-07-31