Explorar el Código

Update README and CHANGELOG.

Daniele Alessandri hace 13 años
padre
commit
71aad42534
Se han modificado 2 ficheros con 7 adiciones y 3 borrados
  1. 1 1
      CHANGELOG.md
  2. 6 2
      README.md

+ 1 - 1
CHANGELOG.md

@@ -5,7 +5,7 @@ v0.7.0 (2011-12-xx)
   single file holding all the classes of the library, but multiple files (one
   single file holding all the classes of the library, but multiple files (one
   for each class). You can use any PSR-0 compatible autoloader to load Predis
   for each class). You can use any PSR-0 compatible autoloader to load Predis
   or just leverage the default one shipped with the library by requiring the
   or just leverage the default one shipped with the library by requiring the
-  `Predis/Autoloadr.php` and call `Predis\Autoloader::register()`.
+  `Predis/Autoloader.php` and call `Predis\Autoloader::register()`.
 
 
 - The default server profile for Redis is now 2.4. The `dev` profile supports
 - The default server profile for Redis is now 2.4. The `dev` profile supports
   all the features of Redis 2.6 (currently unstable) such as Lua scripting.
   all the features of Redis 2.6 (currently unstable) such as Lua scripting.

+ 6 - 2
README.md

@@ -14,10 +14,11 @@ project,
   server profiles.
   server profiles.
 - Client-side sharding with support for consistent hashing or custom distribution strategies.
 - Client-side sharding with support for consistent hashing or custom distribution strategies.
 - Command pipelining on single and aggregated connections.
 - Command pipelining on single and aggregated connections.
+- Transparent key prefixing strategy capable of handling any command known that has keys in its arguments.
 - Abstraction for Redis transactions (Redis >= 2.0) with support for CAS operations (Redis >= 2.2).
 - Abstraction for Redis transactions (Redis >= 2.0) with support for CAS operations (Redis >= 2.2).
+- Connections to Redis instances are automatically and lazily estabilished upon the first call to a command.
 - Ability to connect to Redis using TCP/IP or UNIX domain sockets with support for persistent connections.
 - Ability to connect to Redis using TCP/IP or UNIX domain sockets with support for persistent connections.
 - Ability to use alternative connection classes to use different types of network or protocol backends.
 - Ability to use alternative connection classes to use different types of network or protocol backends.
-- Connections to Redis instances are automatically and lazily estabilished upon the first call to a command.
 - Flexible system to define and register your own set of commands or server profiles to client instances.
 - Flexible system to define and register your own set of commands or server profiles to client instances.
 
 
 
 
@@ -120,7 +121,7 @@ class MyConnectionClass implements Predis\Network\IConnectionSingle
     // implementation goes here
     // implementation goes here
 }
 }
 
 
-// Let Predis automatically use your own class to handle connections identified by the tcp prefix.
+// Let Predis automatically use your own class to handle connections identified by the tcp scheme.
 $client = new Predis\Client('tcp://127.0.0.1', array(
 $client = new Predis\Client('tcp://127.0.0.1', array(
     'connections' => array('tcp' => 'MyConnectionClass')
     'connections' => array('tcp' => 'MyConnectionClass')
 ));
 ));
@@ -168,6 +169,9 @@ current stable version of Redis). You can optionally run the suite against a Red
 the `unstable` branch with the development profile by changing the `REDIS_SERVER_VERSION` to `dev` in
 the `unstable` branch with the development profile by changing the `REDIS_SERVER_VERSION` to `dev` in
 the `phpunit.xml` file. More details about testing Predis are available in `tests/README.md`.
 the `phpunit.xml` file. More details about testing Predis are available in `tests/README.md`.
 
 
+Predis uses Travis CI for continuous integration. You can find the results of the test suite and the build
+history [on its project page](http://travis-ci.org/nrk/predis).
+
 
 
 ## Contributing ##
 ## Contributing ##