Download the PHP package myphps/my-id without Composer

On this page you can find all versions of the php package myphps/my-id. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package my-id

基于workerman|swoole的ID生成服务(单进程、主从服务模式)

全局唯一数字id 最大到9223372036854775807
id自增 重启可能存在id浪费
支持批量获取id
支持生成奇偶的id
支持http+tcp接入 两种id数据存储方式json文件或mysql
使用主(单进程)从(多进程)服务模式时id不保持连续性

安装运行

mkdir myid
cd myid

composer require myphps/my-id

cp vendor/myphps/my-id/run.example.php run.php
cp vendor/myphps/my-id/conf.example.php conf.php
chmod +x run.php

修改 run.php conf.php配置
运行 ./run.php 

./run.php -h 帮助
./run.php -t master 主服务
./run.php -t worker 从服务(需要配置主服务连接信息) id从这里获取

使用

delta int DEFAULT 1 每次增量值 范围(1-999)
step int DEFAULT 100000 步长,最小1000
init_id int DEFAULT 0 id初始值

http模式

获取id /id?name=xxx[&size=x]&key=认证key
初始id /init?name=xxx[&&delta=1&step=1000&init_id=0]

tcp模式

获取id 发送 name=xx[&size=x]+"\r\n" 
初始id 发送 a=init&name=xxx[&delta=1&step=1000&init_id=0]+"\r\n" 

TODO

数据意外被删除服务未停止的情况自动重新生成数据
管理面板
出错通知
监控数据

备注

initId 初始id
nextId 获取id
updateId 更新id

单进程服务能保持id连续性
主从服务模式id不是连续性的
主从服务模式 在从服务的多进程里记录大量id缓存并自动预载最新id,主服务挂掉的时有足够时间来重启服务(这个过程有大量id被浪费掉)


All versions of my-id with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
myphps/my-php-srv Version ^3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package myphps/my-id contains the following files

Loading the files please wait ....