public
Description:
Homepage:
Clone URL: git://github.com/kajidai/php-luxio.git
name age message
file CREDITS Sun Nov 02 18:03:49 -0800 2008 initial commit [kajidai]
file README Sun Nov 02 18:03:49 -0800 2008 initial commit [kajidai]
file config.m4 Sun Nov 02 18:03:49 -0800 2008 initial commit [kajidai]
file luxio.cpp Fri Sep 18 00:08:26 -0700 2009 support luxio-0.2.1 [kajidai]
file luxio.php Sun Nov 02 18:03:49 -0800 2008 initial commit [kajidai]
file php_luxio.h Sun Nov 02 18:03:49 -0800 2008 initial commit [kajidai]
directory tests/ Sun Nov 02 18:03:49 -0800 2008 initial commit [kajidai]
README
PHP extension for Lux IO
--------------------

Lux IO website is here:
http://luxio.sourceforge.net/

SYNOPSIS:
 <?php
 $luxiobtree = new LuxIOBtree();
 $luxiobtree->open('test', LUX_DB_CREAT);

 $ret = $luxiobtree->put('key', 'value');
 // $ret = true;

 $ret = $luxiobtree->get('key');
 // $ret = 'value';

 $ret = $luxiobtree->del('key');
 // $ret = true;