this version is fork version. original source
phpcassa is a PHP client library for Apache Cassandra.
- Compatible with Cassandra 0.7, 0.8, 1.0, and 1.1
- Optional C extension for improved performance
phpcassa is compatible with PHP 5.3+
phpcassa is open source under the MIT license.
older content
## How to use original git ripository & hiphop patch(Optional)
if you do not want this repository
try this
wget https://raw.github.com/VanillaBreeze/phpcassa/master/phpcassa-hiphop.patch
git clone https://github.com/thobbs/phpcassa.git
cd phpcassa
cat ../phpcassa-hiphop.patch | patch -p1
While this README includes some useful information, the official and more thorough documentation can be found here:
http://thobbs.github.com/phpcassa
You can find a few fully working example scripts in the examples/
directory.
$pool = new ConnectionPool('Keyspace1');
or
$pool = new ConnectionPool('Keyspace1', array('localhost'));
$users = new ColumnFamily($pool, 'Standard1');
$super = new SuperColumnFamily($pool, 'Super1');
$users->insert('key', array('column1' => 'value1', 'column2' => 'value2'));
$users->get('key');
$users->multiget(array('key1', 'key2'));
$users->remove('key1'); // removes whole row
$users->remove('key1', 'column1'); // removes 'column1'
$users->get_count('key1'); // counts the number of columns in row 'key1'
$users->get_range('key1', 'key9'); // gets all rows with keys between '1' and '9'
The C extension is crucial for phpcassa's performance.
You need to configure and make to be able to use the C extension.
cd lib/thrift/ext/thrift_protocol
phpize
./configure
make
sudo make install
Add the following line to your php.ini file:
extension=thrift_protocol.so
- Mailing list: phpcassa on google groups
- IRC: Channel #cassandra on irc.freenode.net