Update CHANGELOG.

This commit is contained in:
Daniele Alessandri
2010-05-21 20:45:14 +02:00
parent 84cb28e3ac
commit 71dab9a249
+8 -5
View File
@@ -4,7 +4,7 @@ v0.6.0
are now deprecated as they will be removed in future releases of Redis.
* Support for Redis 1.0 is now optional and it is provided by requiring
'Predis_Compatibility.php' before creating an instance of \Predis\Client.
'Predis_Compatibility.php' before creating an instance of Predis\Client.
* New commands added to the Redis 2.0 profile since Predis 0.5.1:
- Strings: SETEX, APPEND, SUBSTR
@@ -24,12 +24,12 @@ v0.6.0
specifies which server profile to use when connecting to Redis. This
option accepts an instance of Predis\RedisServerProfile or a string
that indicates the target version.
- key_distribution [default: Predis\Utilities\HashRing]
- key_distribution [default: Predis\Distribution\HashRing]
specifies which key distribution algorithm to use to distribute keys
among the servers that compose a cluster. This option accepts an
instance of Predis\IDistributionAlgorithm so that users can implement
their own key distribution strategy. Optionally, the new
Predis\Utilities\KetamaPureRing class also provides a pure-PHP
instance of Predis\Distribution\IDistributionAlgorithm so that users
can implement their own key distribution strategy. Optionally, the new
Predis\Distribution\KetamaPureRing class also provides a pure-PHP
implementation of the Ketama algorithm.
- throw_on_error [default: TRUE]
server errors can optionally be handled "silently": instead of throwing
@@ -58,6 +58,9 @@ v0.6.0
lifecycle. Persistent connections can lead to unpredictable or strange
behaviours, so they should be used with extreme care.
* Support for PUBSUB is handled by the new Predis\PubSubContext class, which
could also be used to build a callback dispatcher for PUBSUB scenarios.
* Connections now support float values for the connection_timeout parameter
to express timeouts with a microsecond resolution.