]> git.saurik.com Git - redis.git/blobdiff - client-libraries/php/redis.php
FLUSHALL/FLUSHDB no longer sync on disk. Just increment the dirty counter by the...
[redis.git] / client-libraries / php / redis.php
index a939cbae581fc1dfdc1278ba6441e553ca301364..1e582d244fa28311ed20320b13d78dbeb70c9d51 100644 (file)
@@ -358,8 +358,11 @@ class Redis {
     }
 }
 
+/*
 $r = new Redis();
+var_dump($r->set("foo","bar"));
 var_dump($r->get("foo"));
 var_dump($r->info());
+*/
 
 ?>