Skip to content

Commit cd00b4a

Browse files
authored
Update README.md
1 parent 99a8dc6 commit cd00b4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ RedisClient is a fast, fully-functional and user-friendly client for Redis, opti
1212
- Support __PubSub__ and __Monitor__ functionallity.
1313
- Support __Pipeline__ and __Transactions__.
1414
- Support __Redis Cluster__.
15-
- Support __RAW__ commands as strings `"SET foo bar"` or as arrays `['SET', 'foo', 'bar']`.
15+
- Support __RAW__ commands as arrays `['SET', 'foo', 'bar']`.
1616
- Connections to Redis are established lazily by the client upon the first command.
1717
- Easy to use with IDE, client has PHPDocs for all supported versions.
18-
- By default, the client works with the latest stable version of Redis (3.2).
18+
- By default, the client works with the latest stable version of Redis (4.0.0).
1919
- The client was tested on the next latest versions of Redis: 2.6.17, 2.8.24, 3.0.7, 3.2.8, 4.0.0.
2020
- Also, the client was tested on PHP 5.5, 5.6, 7.0, 7.1, HHVM.
2121

@@ -32,7 +32,7 @@ $config = [
3232
'timeout' => 2,
3333

3434
// Optional. Specify version to avoid some unexpected errors.
35-
'version' => '2.8.24',
35+
'version' => '3.2.8',
3636

3737
// Optional. Use it only if Redis server requires password (AUTH)
3838
'password' => 'some-password',

0 commit comments

Comments
 (0)