Skip to content

Commit 1d89b27

Browse files
committed
Update project homepage
1 parent 786fa95 commit 1d89b27

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# clue/redis-protocol [![Build Status](https://travis-ci.org/clue/php-redis-protocol.png?branch=master)](https://travis-ci.org/clue/php-redis-protocol)
1+
# clue/redis-protocol
22

3-
[![CI status](https://github.com/clue/php-redis-protocol/actions/workflows/ci.yml/badge.svg)](https://github.com/clue/php-redis-protocol/actions)
3+
[![CI status](https://github.com/clue/redis-protocol/actions/workflows/ci.yml/badge.svg)](https://github.com/clue/redis-protocol/actions)
44
[![installs on Packagist](https://img.shields.io/packagist/dt/clue/redis-protocol?color=blue&label=installs%20on%20Packagist)](https://packagist.org/packages/clue/redis-protocol)
55

6-
A streaming redis protocol parser and serializer written in PHP
6+
A streaming Redis protocol (RESP) parser and serializer written in pure PHP.
77

8-
This parser and serializer implementation allows you to parse redis protocol
8+
This parser and serializer implementation allows you to parse Redis protocol
99
messages into native PHP values and vice-versa. This is usually needed by a
10-
redis client implementation which also handles the connection socket.
10+
Redis client implementation which also handles the connection socket.
1111

12-
To re-iterate: This is *not* a redis client implementation. This is a protocol
13-
implementation that is usually used by a redis client implementation. If you're
12+
To re-iterate: This is *not* a Redis client implementation. This is a protocol
13+
implementation that is usually used by a Redis client implementation. If you're
1414
looking for an easy way to build your own client implementation, then this is
15-
for you. If you merely want to connect to a redis server and issue some
15+
for you. If you merely want to connect to a Redis server and issue some
1616
commands, you're probably better off using one of the existing client
1717
implementations.
1818

@@ -62,15 +62,15 @@ your use-case).
6262

6363
### Parser
6464

65-
The library includes a streaming redis protocol parser. As such, it can safely
66-
parse redis protocol messages and work with an incomplete data stream. For this,
65+
The library includes a streaming Redis protocol parser. As such, it can safely
66+
parse Redis protocol messages and work with an incomplete data stream. For this,
6767
each included parser implements a single method
6868
`ParserInterface::pushIncoming($chunk)`.
6969

70-
* The `ResponseParser` is what most redis client implementation would want to
71-
use in order to parse incoming response messages from a redis server instance.
72-
* The `RequestParser` can be used to test messages coming from a redis client or
73-
even to implement a redis server.
70+
* The `ResponseParser` is what most Redis client implementation would want to
71+
use in order to parse incoming response messages from a Redis server instance.
72+
* The `RequestParser` can be used to test messages coming from a Redis client or
73+
even to implement a Redis server.
7474
* The `MessageBuffer` decorates either of the available parsers and merely
7575
offers some helper methods in order to work with single messages:
7676
* `hasIncomingModel()` to check if there's a complete message in the pipeline
@@ -121,7 +121,7 @@ assert($model implement Model\MultiBulkReply);
121121
## Install
122122

123123
It's very unlikely you'll want to use this protocol parser standalone.
124-
It should be added as a dependency to your redis client implementation instead.
124+
It should be added as a dependency to your Redis client implementation instead.
125125
The recommended way to install this library is [through Composer](https://getcomposer.org).
126126
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
127127

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "clue/redis-protocol",
3-
"description": "A streaming redis wire protocol parser and serializer implementation in PHP",
4-
"keywords": ["streaming", "redis", "protocol", "parser", "serializer"],
5-
"homepage": "https://github.com/clue/php-redis-protocol",
3+
"description": "A streaming Redis protocol (RESP) parser and serializer written in pure PHP.",
4+
"keywords": ["streaming", "redis", "protocol", "resp", "parser", "serializer"],
5+
"homepage": "https://github.com/clue/redis-protocol",
66
"license": "MIT",
77
"authors": [
88
{

0 commit comments

Comments
 (0)