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.
micoya/php-snowflake-shm 适用场景与选型建议
micoya/php-snowflake-shm 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 6, 最近一次更新时间为 2023 年 06 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 micoya/php-snowflake-shm 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 micoya/php-snowflake-shm 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-06-03