CHANGELOG 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. v0.6.1 (2010-xx-xx)
  2. * Minor internal improvements and clean ups.
  3. * New commands available in the Redis v2.2 profile (dev):
  4. - Misc. : WATCH, UNWATCH
  5. * Optional modifiers for ZRANGE, ZREVRANGE and ZRANGEBYSCORE queries are
  6. supported using an associative array passed as the last argument of their
  7. respective methods.
  8. * The LIMIT modifier for ZRANGEBYSCORE can be specified using either:
  9. - an indexed array: array($offset, $count)
  10. - an associative array: array('offset' => $offset, 'count' => $count)
  11. * The method Predis\Client::__construct() now accepts also instances of
  12. Predis\ConnectionParameters.
  13. * Predis\MultiExecBlock and Predis\PubSubContext now throw an exception
  14. when trying to create their instances using a profile that does not
  15. support the required Redis commands or when the client is connected to
  16. a cluster of connections.
  17. * Various improvements to Predis\MultiExecBlock:
  18. - fixes and more consistent behaviour across various usage cases.
  19. - support for WATCH and UNWATCH when using the current development
  20. profile (Redis v2.2) and aborted transactions.
  21. * New signature for Predis\Client::multiExec() which is now able to accept
  22. an array of options for the underlying instance of Predis\MultiExecBlock.
  23. Backwards compatibility with previous releases of Predis is ensured.
  24. * New signature for Predis\Client::pipeline() which is now able to accept
  25. an array of options for the underlying instance of Predis\CommandPipeline.
  26. Backwards compatibility with previous releases of Predis is ensured.
  27. The method Predis\Client::pipelineSafe() is to be considered deprecated.
  28. * FIX: The WEIGHT modifier for ZUNIONSTORE and ZINTERSTORE was handled
  29. incorrectly with more than two weights specified.
  30. v0.6.0 (2010-05-24)
  31. * Switched to the new multi-bulk request protocol for all of the commands
  32. in the Redis 1.2 and Redis 2.0 profiles. Inline and bulk requests are now
  33. deprecated as they will be removed in future releases of Redis.
  34. * The default server profile is "2.0" (targeting Redis 2.0.x). If you are
  35. using older versions of Redis, it is highly recommended that you specify
  36. which server profile the client should use (e.g. "1.2" when connecting
  37. to instances of Redis 1.2.x).
  38. * Support for Redis 1.0 is now optional and it is provided by requiring
  39. 'Predis_Compatibility.php' before creating an instance of Predis\Client.
  40. * New commands added to the Redis 2.0 profile since Predis 0.5.1:
  41. - Strings: SETEX, APPEND, SUBSTR
  42. - ZSets : ZCOUNT, ZRANK, ZUNIONSTORE, ZINTERSTORE, ZREMBYRANK, ZREVRANK
  43. - Hashes : HSET, HSETNX, HMSET, HINCRBY, HGET, HMGET, HDEL, HEXISTS,
  44. HLEN, HKEYS, HVALS, HGETALL
  45. - PubSub : PUBLISH, SUBSCRIBE, UNSUBSCRIBE
  46. - Misc. : DISCARD, CONFIG
  47. * Introduced client-level options with the new Predis\ClientOptions class.
  48. Options can be passed to Predis\Client::__construct in its second argument
  49. as an array or an instance of Predis\ClientOptions. For brevity's sake and
  50. compatibility with older versions, the constructor of Predis\Client still
  51. accepts an instance of Predis\RedisServerProfile in its second argument.
  52. The currently supported client options are:
  53. - profile [default: "2.0" as of Predis 0.6.0]
  54. specifies which server profile to use when connecting to Redis. This
  55. option accepts an instance of Predis\RedisServerProfile or a string
  56. that indicates the target version.
  57. - key_distribution [default: Predis\Distribution\HashRing]
  58. specifies which key distribution strategy to use to distribute keys
  59. among the servers that compose a cluster. This option accepts an
  60. instance of Predis\Distribution\IDistributionStrategy so that users
  61. can implement their own key distribution strategy. Optionally, the new
  62. Predis\Distribution\KetamaPureRing class also provides a pure-PHP
  63. implementation of the same algorithm used by libketama.
  64. - throw_on_error [default: TRUE]
  65. server errors can optionally be handled "silently": instead of throwing
  66. an exception, the client returns an error response type.
  67. - iterable_multibulk [EXPERIMENTAL - default: FALSE]
  68. in addition to the classic way of fetching a whole multibulk reply
  69. into an array, the client can now optionally stream a multibulk reply
  70. down to the user code by using PHP iterators. It is just a little bit
  71. slower, but it can save a lot of memory in certain scenarios.
  72. * New parameters for connections:
  73. - alias [default: not set]
  74. every connection can now be identified by an alias that is useful to
  75. get a certain connection when connected to a cluster of Redis servers.
  76. - weight [default: not set]
  77. allows the client to balance the keys asymmetrically across multiple
  78. servers. This might be useful when you have servers with different
  79. amounts of memory and you want to distribute the load of your keys
  80. accordingly.
  81. - connection_async [default: FALSE]
  82. estabilish connections to servers in a non-blocking way, so that the
  83. client is not blocked while the underlying resource performs the actual
  84. connection.
  85. - connection_persistent [default: FALSE]
  86. the underlying connection resource is left open when a script ends its
  87. lifecycle. Persistent connections can lead to unpredictable or strange
  88. behaviours, so they should be used with extreme care.
  89. * Introduced the Predis\Pipeline\IPipelineExecutor interface. Classes that
  90. implements this interface are used internally by the Predis\CommandPipeline
  91. class to change the behaviour of the pipeline when writing/reading commands
  92. from one or multiple servers. Here is the list of the default executors:
  93. - Predis\Pipeline\StandardExecutor
  94. Exceptions generated by server errors might be thrown depending on the
  95. options passed to the client (see "throw_on_error"). Instead, protocol
  96. or network errors always throw exceptions. This is the default executor
  97. for single and clustered connections and shares the same behaviour of
  98. Predis 0.5.x.
  99. - Predis\Pipeline\SafeExecutor
  100. Exceptions generated by server, protocol or network errors are not
  101. thrown, instead they are returned in the response array as instances of
  102. ResponseError or CommunicationException.
  103. - Predis\Pipeline\SafeClusterExecutor
  104. This executor shares the same behaviour of Predis\Pipeline\SafeExecutor
  105. but it is geared towards clustered connections.
  106. * Support for PUBSUB is handled by the new Predis\PubSubContext class, which
  107. could also be used to build a callback dispatcher for PUBSUB scenarios.
  108. * When connected to a cluster of connections, it is now possible to get a
  109. new Predis\Client instance for a single connection of the cluster by
  110. passing its alias/index to the new Predis\Client::getClientFor() method.
  111. * CommandPipeline and MultiExecBlock return their instances when invoking
  112. commands, thus allowing method chaining in pipelines and multi-exec blocks.
  113. * MultiExecBlock instances can handle the new DISCARD command.
  114. * Connections now support float values for the connection_timeout parameter
  115. to express timeouts with a microsecond resolution.
  116. * FIX: TCP connections now respect the read/write timeout parameter when
  117. reading the payload of server responses. Previously, stream_get_contents()
  118. was being used internally to read data from a connection but it looks like
  119. PHP does not honour the specified timeout for socket streams when inside
  120. this function.
  121. * FIX: The GET parameter for the SORT command now accepts also multiple key
  122. patterns by passing an array of strings. (ISSUE #1).
  123. * FIX: Replies to the DEL command return the number of elements deleted by
  124. the server and not 0 or 1 interpreted as a boolean response. (ISSUE #4).
  125. v0.5.1 (2010-01-23)
  126. * RPOPLPUSH has been changed from bulk command to inline command in Redis
  127. 1.2.1, so ListPopLastPushHead now extends InlineCommand. The old RPOPLPUSH
  128. behavior is still available via the ListPopLastPushHeadBulk class so that
  129. you can override the server profile if you need the old (and uncorrect)
  130. behaviour when connecting to a Redis 1.2.0 instance.
  131. * Added missing support for BGREWRITEAOF for Redis >= 1.2.0
  132. * Implemented a factory method for the RedisServerProfile class to ease the
  133. creation of new server profile instances based on a version string.
  134. v0.5.0 (2010-01-09)
  135. * First versioned release of Predis