共有 0 个贴子
没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
www.trustie.net/open_source_projects | 主页 > 开源项目社区 > phpredis |
phpredis
|
0 | 0 | 16 |
贡献者 | 讨论 | 代码提交 |
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-onlyINSTALLINGphpize
./configure
make && make installABOUTAlfonso Jimenez http://www.alfonsojimenez.com