You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RedisClient is a fast, fully-functional and user-friendly client for Redis, optimized for performance. RedisClient supports the latest versions of Redis starting from __2.6__ to __4.0__
@@ -17,7 +17,7 @@ RedisClient is a fast, fully-functional and user-friendly client for Redis, opti
17
17
- Easy to use with IDE, client has PHPDocs for all supported versions.
18
18
- By default, the client works with the latest stable version of Redis (4.0).
19
19
- 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.8.
20
-
- Also, the client was tested on PHP 5.5, 5.6, 7.0, 7.1, HHVM.
20
+
- Also, the client was tested on PHP 5.5, 5.6, 7.0, 7.1, 7.2, HHVM.
21
21
22
22
## Usage
23
23
@@ -29,8 +29,23 @@ $config = [
29
29
'server' => '127.0.0.1:6379',
30
30
31
31
// Optional. Default = 1
32
+
// The timeout for reading/writing data over the socket
32
33
'timeout' => 2,
33
34
35
+
// Optional. Default = null
36
+
// See more here: http://php.net/manual/en/function.stream-socket-client.php
Copy file name to clipboardExpand all lines: composer.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "cheprasov/php-redis-client",
3
-
"version": "1.7.2",
3
+
"version": "1.8.0",
4
4
"description": "Php client for Redis. It is a fast, fully-functional and user-friendly client for Redis, optimized for performance. RedisClient supports the latest versions of Redis starting from 2.6 to 4.0",
0 commit comments