Daniele Alessandri
1f7b534072
Preserve remainder of path in URI after database (redis scheme).
2015-07-30 11:13:42 +02:00
Daniele Alessandri
8aec51b34f
Implement full support for IPv6.
...
Using IPv6 with Predis was basically impossible due to various inconsistencies
and bugs through the library, now it is supported by all the connection classes.
Following the standard for IPv6 literal addresses in URI strings, the IP literal
must be enclosed within square brackets when passing the parameters as a string:
$parameters = 'tcp://[2001:db8:0:f101::1]:6379';
See https://tools.ietf.org/html/rfc3986#section-3.2.2 for further details.
This commit also fixes #239 making redis-cluster usable with nodes using IPv6.
2015-07-29 23:09:52 +02:00
Daniele Alessandri
c3a44b8e2e
Strip brackets from host when parsing embedded IPv6 address.
...
I don't know why PHP's parse_url() does not do that, it does not make
sense when the IP is by itself so maybe it is a bug?
2015-07-29 17:01:19 +02:00
Daniele Alessandri
0d25e7b0bb
Add new command: HSTRLEN (Redis 3.2.0).
...
Also bump the unstable profile version to 3.2.
2015-07-29 11:52:55 +02:00
Daniele Alessandri
833e46b79d
[tests] Fix typo.
2015-07-25 21:59:08 +02:00
Daniele Alessandri
a22858438d
[tests] Require pcntl extension to run blocking PubSub\Consumer test.
2015-07-25 21:58:01 +02:00
Daniele Alessandri
0b5bfdfe33
[tests] Improve code-reuse in tests for the Predis\Connection namespace.
2015-07-25 21:27:02 +02:00
Daniele Alessandri
3700d48771
[tests] Share common test among connection classes.
2015-07-25 20:54:01 +02:00
Daniele Alessandri
653d3f08ab
[tests] Use @requires annotation.
2015-07-25 20:52:01 +02:00
Daniele Alessandri
2d2de7837b
[tests] Fix some tests methods names.
2015-07-25 10:07:58 +02:00
Daniele Alessandri
fc18e6456a
[tests] Apply small changes to commands tests with expirations.
2015-07-25 10:07:55 +02:00
Daniele Alessandri
6f2064ed90
[tests] Cover SET modifiers EX, PX, NX|XX (Redis >= 2.6.12).
2015-07-25 09:11:16 +02:00
Daniele Alessandri
381e44b6e6
Run php-cs-fixer with new configuration.
2015-07-24 23:21:07 +02:00
Daniele Alessandri
33eab38314
Remove unneeded "use" imports.
2015-07-24 21:25:48 +02:00
Daniele Alessandri
82e404660e
Run php-cs-fixer against codebase in src/ and tests/.
2015-07-24 17:58:56 +02:00
Daniele Alessandri
95624de5c4
[tests] Apply some fixes and improvements and remove old stuff.
2015-07-24 17:27:41 +02:00
Daniele Alessandri
baaf26fe5b
Add support for the 'redis://' scheme in URI strings.
...
The URI string will be handled following the rules as described by the
the provisional IANA registration document that can be found on IANA's
website: http://www.iana.org/assignments/uri-schemes/prov/redis .
2015-07-23 19:21:16 +02:00
Daniele Alessandri
6a0348fbea
Add missing command: MIGRATE (Redis 2.6.0).
...
Fixes #209 .
2015-07-23 19:21:03 +02:00
Daniele Alessandri
8365a6be77
[tests] Fix minor oversight.
2015-07-23 19:20:52 +02:00
Daniele Alessandri
30d01c40d4
[tests] Improve assert failure messages for replication stategy tests.
2015-07-23 11:40:52 +02:00
Daniele Alessandri
6459546e25
Fix missing BITPOS in replication strategy.
2015-07-23 11:40:39 +02:00
Daniele Alessandri
dede828008
Add missing BITPOS command in key prefix processor.
...
See #265 .
2015-07-23 11:40:27 +02:00
Daniele Alessandri
5cd7b774c4
[tests] Adapt to internal encoding changes for lists in Redis 3.0.
2015-07-07 16:11:49 +02:00
Daniele Alessandri
354d1ef921
Support ZADD modifiers when using simplified command signature.
...
The NX|XX, CH and INCR modifiers for ZADD are available in Redis since
version 3.0.2. See http://redis.io/commands/ZADD for additional info.
2015-07-07 16:11:43 +02:00
Daniele Alessandri
35003713a2
Merge remote-tracking branch 'github/pr/235' into v1.0
...
Conflicts:
.travis.yml
CHANGELOG.md
VERSION
package.ini
src/Client.php
2015-07-07 14:52:09 +02:00
Daniele Alessandri
aa067d8fd9
[tests] Implement test for #257 to guard against regressions.
2015-07-03 12:03:15 +02:00
Michal Humpula
af48b30398
add zrevrangebylex command
2015-01-23 23:06:40 +01:00
Daniele Alessandri
0400d7b581
Merge remote-tracking branch 'blocktrail/hhvm-pubsub-blockingread-test-v1.0'
2015-01-02 13:00:38 +01:00
Daniele Alessandri
692718afb4
Merge remote-tracking branch 'blocktrail/hhvm-pubsub-blockingread-test-v1.0' into v1.0
2015-01-02 13:00:25 +01:00
Daniele Alessandri
75ca2f8111
Add minimum required Redis version for BITPOS integration tests.
2015-01-02 12:14:05 +01:00
Daniele Alessandri
37b1c88115
Apply minor CS fixes and trim spurious spaces.
2015-01-02 12:13:58 +01:00
Daniele Alessandri
e9264bb087
Add minimum required Redis version for BITPOS integration tests.
2015-01-02 12:12:47 +01:00
Daniele Alessandri
1e774f4686
Apply minor CS fixes and trim spurious spaces.
2015-01-02 12:12:23 +01:00
nicchap
d2f7903724
Updated bitpos position
2014-12-20 23:39:56 -05:00
nicchap
0e2b7603a5
Updated test cases
...
1) updated command sequence profiles
2) fixed exception test syntax error
3) Installed PHPUnit locally and successfully ran test.
2014-12-20 12:12:04 -05:00
nicchap
3eb053a08c
Missing updates for BITPOS command
...
Added BITPOS command to test profiles.
2014-12-20 00:13:41 -05:00
Ruben de Vries
f3748e45ef
added (failing on HHVM) test for pubsub with read_write_timeout=-1
2014-12-19 11:40:59 +01:00
nicchap
a1977c1b61
Edited typos
...
Changed redeclaration error and added single return
2014-12-18 12:15:54 -05:00
nicchap
5a02204833
Added BitPos command
...
Added BitPos command
2014-12-18 11:09:00 -05:00
Daniele Alessandri
8255003de8
[tests] Test serialization of redis-cluster connection with @medium.
...
Serializing an instance of a redis-cluster connection with its nodes
can take more than 1 seconds on extremely slow hardware.
See issue #220 for reference.
2014-11-07 14:28:44 +01:00
Daniele Alessandri
5f3723bbd1
[tests] Use round() to avoid issues with floats on certain plaforms.
...
See issue #220 on GitHub for reference.
2014-11-07 14:28:09 +01:00
Daniele Alessandri
e2f4357ca3
Fix E_NOTICE emitted on empty response to INFO [section].
...
Empty responses can be returned when requesting an unsupported section
with the INFO command.
2014-10-25 17:45:00 +02:00
Daniele Alessandri
dc2cb3c639
Fix bug in ZSCAN-based iterator when sorted sets have integer members.
...
When iterating a sorted set containing integer members, our iterator
abstraction based on ZSCAN was always returning "0" as a member value
after the first $member => $score pair because of a wrong assumption
on how the PHP function array_shift() (used internally to advance to
the next pair in our buffered response to ZSCAN) works.
Fixes #216 .
2014-10-21 11:57:43 +02:00
Daniele Alessandri
d09c4f32f3
[tests] Relax checks on invalid expire time messages.
...
Previously there was a bug in Redis that returned the wrong command
in -ERR messages when passing an invalid expire time with SETEX and
PSETEX. Now that the bug has been fixed and that travis-ci uses a an
updated version of Redis, our test suite turned red.
2014-10-21 11:16:55 +02:00
Daniele Alessandri
f5ba47ad74
Change response parser for ZSCAN to match changes applied to ZRANGE.
2014-07-30 16:45:00 +02:00
Daniele Alessandri
fbb0236840
Apply minor code-styling changes.
2014-07-30 15:30:02 +02:00
Daniele Alessandri
b6389e4a03
Switch to "3.0" as the default server profile.
...
Redis 3.0 does not really change much in terms of commands (most of
the ones implemented in the "unstable" branch have been backported to
the "2.8" branch after all) aside from a few cluster-related ones, so
we can bump the default version without worries.
2014-07-28 20:36:12 +02:00
Daniele Alessandri
dedc1ba0a9
Move command "COMMAND" to the server profile for Redis 2.8.
...
This command has been backported from the "unstable" branch of Redis
to the "2.8" one, and it is available since 2.8.13.
2014-07-28 20:30:09 +02:00
Daniele Alessandri
45e351be79
[phpdoc] Fix formatting of phpdoc headers.
2014-07-27 23:59:37 +02:00
Daniele Alessandri
dbfc1a74ba
More random fixes after inspection.
2014-07-27 23:06:17 +02:00