artnum/snowflake53 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

artnum/snowflake53

Composer 安装命令:

composer require artnum/snowflake53

包简介

Generate unique 53 bits snowflake IDs

README 文档

README

A trait to generate 53 bits snowflake id to fit into js Number.MAX_SAFE_INTEGER. Sequence counting is done with shared memory and machine ID comes from environment variable or parameters It also possible to generate 64 bits snowflake id.

It dosen't require any external infrastructure (like Memcached or Redis or ...) to keep sequence counting as it is done by shared memory and use semaphore for locking. So other processes can tap into the sequence counting too :)

Install

Via composer :

$ composer require artnum/snowflake53

Usage

require_once 'vendor/autoload.php';

use Snowflake53\ID;

class IDGen {
    use ID;
}

$gen = new IDGen();
echo $gen->get53() . PHP_EOL;
echo $gen->get64() . PHP_EOL;

All functions are declared as static, so it is possible to use without a class instance.

require_once 'vendor/autoload.php';

use Snowflake53\ID;

class IDGen {
    use ID;
}

echo IDGen::get53() . PHP_EOL;
echo IDGen::get64() . PHP_EOL;

You can destroy, if you choose to, shared memory semgent and semaphore by calling destroySHM:

require_once 'vendor/autoload.php';

use Snowflake53\ID;

class IDGen {
    use ID;
}

IDGen::destroySHM(); 

Shared memory path

Shared memory use a file path as identity. By default it is __FILE__. But if you use this in several different places on your server but still want all ID to be in sequence, you can set the public static variable $SHMPath to the path you want. The file must exist.

require_once 'src/Snowflake53.php';

use Snowflake53\ID;

class IDGen {
    use ID;
}

IDGen::$SHMPath = '/tmp/snowflake53';
echo IDGen::get53() . PHP_EOL;
echo IDGen::get64() . PHP_EOL;


$gen = new IDGen();
$gen::$SHMPath = '/tmp/snowflake53';
echo $gen->get53() . PHP_EOL;
echo $gen->get64() . PHP_EOL;

Machine ID

Machine ID can be passed as argument of get53 or get64. If not, it will try to get the ID from environment variable SNOWFLAK53_MACHINE_ID, SNOWFLAKE64_MACHINE_ID or SNOWFLAKE_MACHINE_ID. When getting a 53 bits ID, SNOWFLAK53_MACHINE_ID will be look at and then SNOWFLAKE_MACHINE_ID, when getting a 64 bits ID it's the opposite (first SNOWFLAKE64_MACHINE_ID and then SNOWFLAKE_MACHINE_ID).

The idea behind that is you set a unique machine for 64 and 53 bits and so, you use SNOWFLAKE_MACHINE_ID or you have a different machine ID for 53 bits or 64 bits and so you set SNOWFLAKE53_MACHINE_ID and SNOWFLAKE64_MACHINE_ID.

License

Under MIT license.

Developer

artnum/snowflake53 适用场景与选型建议

artnum/snowflake53 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 14 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 03 月 26 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 artnum/snowflake53 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 artnum/snowflake53 我们能提供哪些服务?
定制开发 / 二次开发

基于 artnum/snowflake53 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 14
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 29
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-03-26