Author: bicou
Date: 2010-03-26 20:49:41 +0100 (Fri, 26 Mar 2010)
New Revision: 28815

Modified:
   plugins/sfRedisPlugin/trunk/README
Log:


Modified: plugins/sfRedisPlugin/trunk/README
===================================================================
--- plugins/sfRedisPlugin/trunk/README  2010-03-26 19:48:11 UTC (rev 28814)
+++ plugins/sfRedisPlugin/trunk/README  2010-03-26 19:49:41 UTC (rev 28815)
@@ -16,7 +16,7 @@
     all:
       connections:
         local:
-          host: 127.0.0.1 
+          host: 127.0.0.1
           port: 6379
 
 You can also use URL based notation:
@@ -50,7 +50,7 @@
 Get a predis client
 -------------------
 
-To create a connection, use sfRedis::getClient() with the connection name as 
parameter:
+To create a connection, use ``sfRedis::getClient()`` with the connection name 
as parameter:
 
     $redis = sfRedis::getClient('myshard');
 
@@ -85,7 +85,7 @@
 
 The sfRedisPlugin provides a Doctrine cache backend.
 
-To enable it, edit ProjectConfiguration::configureDoctrine with:
+To enable it, edit ``ProjectConfiguration::configureDoctrine`` with:
 
     $cacheDriver = new Doctrine_Cache_Redis(array('server' => 
'redis://127.0.0.1:6379', 'prefix' => 'dql:'));
     $manager->setAttribute(Doctrine::ATTR_QUERY_CACHE, $cacheDriver);
@@ -101,11 +101,12 @@
 TODO
 ----
 
- * write tests
+* work with nginx HTTP redis module
+* write tests
 
 LINKS
 -----
 
- * Predis http://github.com/nrk/predis
- * redis http://code.google.com/p/redis/
+* Predis http://github.com/nrk/predis
+* redis http://code.google.com/p/redis/
 

-- 
You received this message because you are subscribed to the Google Groups 
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/symfony-svn?hl=en.

Reply via email to