# php-queue **Repository Path**: lpings/php-queue ## Basic Information - **Project Name**: php-queue - **Description**: php-queue 是 PHP开发的磁盘存储消息队列服务,基于leveldb和swoole ,在4核机器上处理能力可以达到2.5W/s - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/php-queue - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-04-20 - **Last Updated**: 2021-04-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # php-queue PHP开发的磁盘存储消息队列服务,基于leveldb和swoole,在4核机器上处理能力可以达到2.5W/s * leveldb: * php-leveldb: * swoole: 安装 ---- 安装swoole和leveldb扩展,并下载源码 ```shell pecl install swoole pecl install leveldb ``` > 程序使用了客户端EOF分包,需要swoole-1.7.17以上版本 运行 ---- ```shell php server.php ``` 测试 ---- ```shell php client.php run.sh ```