|
Project Information
Members
Links
|
phpredisThis extension provides an API for communicating with Redis database, a persistent key-value database with built-in net interface written in ANSI-C for Posix systems. Have a look at the available methods. EXAMPLE$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
$redis->set('key', 'val');
echo $redis->get('key');DOWNLOADYou can get the lastest version of phpredis directly from the svn repository: svn checkout http://phpredis.googlecode.com/svn/trunk/ phpredis-read-only INSTALLINGphpize ./configure make && make install ABOUTAlfonso Jimenez http://www.alfonsojimenez.com |