Skip to content

Commit 8db2992

Browse files
committed
Merge pull request #37 from cheprasov/dev-1.2.2
v1.2.2
2 parents 55d67af + d414c4f commit 8db2992

File tree

91 files changed

+741
-177
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+741
-177
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## CHANGELOG
22

3+
### v1.2.2 (2016-03-30)
4+
- Fixed annotations and phpDocs.
5+
- Fixed some tests.
6+
7+
### v1.2.1 (2016-03-04)
8+
- Fixed some cluster commands (Redis >= 3.0): __CLUSTER COUNT-FAILURE-REPORTS__ and __CLUSTER SAVECONFIG__.
9+
310
### v1.2.0 (2016-01-30)
411
- Updated command __MIGRATE__ (Redis >= 3.2): many fixes to the variable number of arguments (new) mode using the KEYS option.
512

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)
22
[![Latest Stable Version](https://poser.pugx.org/cheprasov/php-redis-client/v/stable)](https://packagist.org/packages/cheprasov/php-redis-client)
33
[![Total Downloads](https://poser.pugx.org/cheprasov/php-redis-client/downloads)](https://packagist.org/packages/cheprasov/php-redis-client)
4-
# RedisClient v1.2.1 for PHP >= 5.5
4+
# RedisClient v1.2.2 for PHP >= 5.5
55

66
## About
7-
RedisClient is a fast, fully-functional and user-friendly client for Redis, optimized for performance. RedisClient supports latest versions of Redis starting from __2.6__
7+
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 __3.2.0-RC3__
88

99
## Main features
1010
- Support Redis versions from __2.6__ to __3.2.0-RC3__.
11-
- Support TCP/IP and UNIX sockets.
11+
- Support __TCP/IP__ and __UNIX__ sockets.
1212
- Support __PubSub__ and __Monitor__ functionallity.
1313
- Support __Pipeline__ and __Transactions__.
14-
- Support RAW commands as strings `"SET foo bar"` or as arrays `['SET', 'foo', 'bar']`.
14+
- Support __RAW__ commands as strings `"SET foo bar"` or as arrays `['SET', 'foo', 'bar']`.
1515
- Connections to Redis are established lazily by the client upon the first command.
1616
- Easy to use with IDE, client has PHPDocs for all supported versions.
1717
- By default, the client works with the latest stable version of Redis.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "cheprasov/php-redis-client",
3-
"version": "1.2.1",
4-
"description": "Php client for Redis",
3+
"version": "1.2.2",
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 3.2.0-RC3",
55
"homepage": "http://github.com/cheprasov/php-redis-client",
66
"minimum-stability": "stable",
77
"license": "MIT",

src/RedisClient/Client/AbstractRedisClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
abstract class AbstractRedisClient {
2222

23-
const VERSION = '1.2.1';
23+
const VERSION = '1.2.2';
2424

2525
const CONFIG_SERVER = 'server';
2626
const CONFIG_TIMEOUT = 'timeout';

src/RedisClient/Command/Traits/AbstractCommandsTrait.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
*/
1111
namespace RedisClient\Command\Traits;
1212

13-
/**
14-
* @method mixed eval($script, $keys = null, $args = null)
15-
* @method string echo($message)
16-
*/
1713
trait AbstractCommandsTrait {
1814

1915
/**

src/RedisClient/Command/Traits/Version2x6/ConnectionCommandsTrait.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
namespace RedisClient\Command\Traits\Version2x6;
1212

1313
/**
14-
* Connection
14+
* Connection Commands
1515
* @link http://redis.io/commands#connection
16+
*
17+
* @method string echo($message)
1618
*/
1719
trait ConnectionCommandsTrait {
1820

src/RedisClient/Command/Traits/Version2x6/HashesCommandsTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use RedisClient\Command\Response\ResponseParser;
1515

1616
/**
17-
* trait HashesCommandsTrait
17+
* Hashes Commands
1818
* @link http://redis.io/commands#hash
1919
*/
2020
trait HashesCommandsTrait {

src/RedisClient/Command/Traits/Version2x6/KeysCommandsTrait.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
use RedisClient\Command\Parameter\Parameter;
1414

1515
/**
16-
* trait KeysCommandsTrait
16+
* Keys Commands
17+
* @link http://redis.io/commands#generic
1718
*/
1819
trait KeysCommandsTrait {
1920

src/RedisClient/Command/Traits/Version2x6/ListsCommandsTrait.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
use RedisClient\Command\Response\ResponseParser;
1414

1515
/**
16-
* trait ListsCommandsTrait
16+
* Lists Commands
17+
* @link http://redis.io/commands#list
1718
*/
1819
trait ListsCommandsTrait {
1920

src/RedisClient/Command/Traits/Version2x6/PubSubCommandsTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace RedisClient\Command\Traits\Version2x6;
1212

1313
/**
14-
* PubSub
14+
* PubSub Commands
1515
* @link http://redis.io/commands#pubsub
1616
*/
1717
trait PubSubCommandsTrait {

0 commit comments

Comments
 (0)