clue/redis-protocol
Composer 安装命令:
composer require clue/redis-protocol
包简介
A streaming Redis protocol (RESP) parser and serializer written in pure PHP.
README 文档
README
A streaming Redis protocol (RESP) parser and serializer written in pure PHP.
This parser and serializer implementation allows you to parse Redis protocol messages into native PHP values and vice-versa. This is usually needed by a Redis client implementation which also handles the connection socket.
To re-iterate: This is not a Redis client implementation. This is a protocol implementation that is usually used by a Redis client implementation. If you're looking for an easy way to build your own client implementation, then this is for you. If you merely want to connect to a Redis server and issue some commands, you're probably better off using one of the existing client implementations.
Table of contents
Support us
We invest a lot of time developing, maintaining and updating our awesome open-source projects. You can help us sustain this high-quality of our work by becoming a sponsor on GitHub. Sponsors get numerous benefits in return, see our sponsoring page for details.
Let's take these projects to the next level together! 🚀
Quickstart example
<?php require __DIR__ . '/vendor/autoload.php'; $factory = new Clue\Redis\Protocol\Factory(); $parser = $factory->createResponseParser(); $serializer = $factory->createSerializer(); $fp = fsockopen('tcp://localhost', 6379); fwrite($fp, $serializer->getRequestMessage('SET', array('name', 'value'))); fwrite($fp, $serializer->getRequestMessage('GET', array('name'))); // the commands are pipelined, so this may parse multiple responses $models = $parser->pushIncoming(fread($fp, 4096)); $reply1 = array_shift($models); $reply2 = array_shift($models); var_dump($reply1->getValueNative()); // string(2) "OK" var_dump($reply2->getValueNative()); // string(5) "value"
See also the examples.
Usage
Factory
The factory helps with instantiating the right parser and serializer. Eventually the best available implementation will be chosen depending on your installed extensions. You're also free to instantiate them directly, but this will lock you down on a given implementation (which could be okay depending on your use-case).
Parser
The library includes a streaming Redis protocol parser. As such, it can safely
parse Redis protocol messages and work with an incomplete data stream. For this,
each included parser implements a single method
ParserInterface::pushIncoming($chunk).
- The
ResponseParseris what most Redis client implementation would want to use in order to parse incoming response messages from a Redis server instance. - The
RequestParsercan be used to test messages coming from a Redis client or even to implement a Redis server. - The
MessageBufferdecorates either of the available parsers and merely offers some helper methods in order to work with single messages:hasIncomingModel()to check if there's a complete message in the pipelinepopIncomingModel()to extract a complete message from the incoming queue.
Model
Each message (response as well as request) is represented by a model
implementing the ModelInterface that has two methods:
getValueNative()returns the wrapped value.getMessageSerialized($serializer)returns the serialized protocol messages that will be sent over the wire.
These models are very lightweight and add little overhead. They help keeping the
code organized and also provide a means to distinguish a single line
StatusReply from a binary-safe BulkReply.
The parser always returns models. Models can also be instantiated directly:
$model = new Model\IntegerReply(123); var_dump($model->getValueNative()); // int(123) var_dump($model->getMessageSerialized($serializer)); // string(6) ":123\r\n"
Serializer
The serializer is responsible for creating serialized messages and the corresponing message models to be sent across the wire.
$message = $serializer->getRequestMessage('ping'); var_dump($message); // string(14) "$1\r\n*4\r\nping\r\n" $message = $serializer->getRequestMessage('set', array('key', 'value')); var_dump($message); // string(33) "$3\r\n*3\r\nset\r\n*3\r\nkey\r\n*5\r\nvalue\r\n" $model = $serializer->createRequestModel('get', array('key')); var_dump($model->getCommand()); // string(3) "get" var_dump($model->getArgs()); // array(1) { string(3) "key" } var_dump($model->getValueNative()); // array(2) { string(3) "GET", string(3) "key" } $model = $serializer->createReplyModel(array('mixed', 12, array('value'))); assert($model implement Model\MultiBulkReply);
Install
It's very unlikely you'll want to use this protocol parser standalone. It should be added as a dependency to your Redis client implementation instead. The recommended way to install this library is through Composer. New to Composer?
This will install the latest supported version:
composer require clue/redis-protocol:^0.3.2
See also the CHANGELOG for details about version upgrades.
This project aims to run on any platform and thus does not require any PHP extensions and supports running on legacy PHP 5.3 through current PHP 8+. It's highly recommended to use the latest supported PHP version for this project.
Tests
To run the test suite, you first need to clone this repo and then install all dependencies through Composer:
composer install
To run the test suite, go to the project root and run:
vendor/bin/phpunit
The test suite is set up to always ensure 100% code coverage across all supported environments. If you have the Xdebug extension installed, you can also generate a code coverage report locally like this:
XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text
License
Its parser and serializer originally used to be based on jpd/redisent, which is released under the ISC license, copyright (c) 2009-2012 Justin Poliey justin@getglue.com.
Other than that, this project is released under the permissive MIT license.
Did you know that I offer custom development services and issuing invoices for sponsorships of releases and for contributions? Contact me (@clue) for details.
clue/redis-protocol 适用场景与选型建议
clue/redis-protocol 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16.43M 次下载、GitHub Stars 达 52, 最近一次更新时间为 2013 年 08 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「redis」 「parser」 「serializer」 「streaming」 「protocol」 「resp」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 clue/redis-protocol 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 clue/redis-protocol 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 clue/redis-protocol 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Bridge between JMS Serializer Bundle and Superdesk Web Publisher.
Easy to use SDK with grabber for multiple platforms at once like YouTube, Dailymotion, Facebook and more.
Microservice RPC through message queues.
De/normalize business objects without tightly coupling them to your normalization format
The CodeIgniter Redis package
贝嘟分布式缓存扩展
统计信息
- 总下载量: 16.43M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 52
- 点击次数: 26
- 依赖项目数: 15
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-08-13