micoya/php-snowflake-shm
Composer 安装命令:
composer require micoya/php-snowflake-shm
包简介
Generate unique snowflake using PHP and shared memory.
README 文档
README
Generate unique snowflake using PHP and shared memory. Maybe it is the fastest resolution.
It requires shmop and sysvsem, so you can't run it on Windows OS.
Performance
- 13us per op (WSL2)
- 7us per op (Linux)
Install
composer require micoya/php-snowflake-shm
Examples
Simple Use
/** * Default snowflake have * 41 bit milliseconds timestamps * 12 bit machine id * 10 bit sequence */ // Machine-id is 3 $s = Micoya\PhpSnowflakeShm\SnowflakeFactory::makeShm(3); echo $s->id();
Custom machine-id length or time
$config = new Micoya\PhpSnowflakeShm\Config(); // 16bit machine id , 6bit sequence $config->machine_id_length = 16; $config->start_timestamp = 1685603045000; // use custom config $s = Micoya\PhpSnowflakeShm\SnowflakeFactory::makeShm(3, $config); echo $s->id();
Custom machine-id format helper
If you want to customize the composition of your machine id, for example, if you need to distinguish between machine and worker, here is a simple tool to use.
// 12 bit id includes // 4 bit machine id, current value is 15 // 8 bit worker id, current value is 1 $helper = new \Micoya\PhpSnowflakeShm\MachineIdHelper(12); $helper->pushToHigh(4, 15); $helper->pushToHigh(8, 1); $result_machine_id = $helper->make(); $config = new Micoya\PhpSnowflakeShm\Config(); $config->machine_id_length = 12; // use custom config $s = Micoya\PhpSnowflakeShm\SnowflakeFactory::makeShm($result_machine_id, $config); echo $s->id();
About Unit-Test
Due to some environmental reasons, I didn't use PHPUnit and instead wrote a simple script, Check simple_test.php.
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-06-03