Illustration Image

Cassandra.Link

The best knowledge base on Apache Cassandra®

Helping platform leaders, architects, engineers, and operators build scalable real time data platforms.

10/31/2017

Reading time:1 min

phpcassa

by John Doe

phpcassa is a PHP client library for Apache Cassandra.Compatible with Cassandra 0.7 through 1.2Optional C extension for improved performancephpcassa is compatible with PHP 5.3+phpcassa is open source under the MIT license.DeprecatedAt this point, phpcassa has been deprecated and will no longer be supported.I suggest using the DataStax PHP driver located here: https://github.com/datastax/php-driver. It supports CQL, has many excellent features, and is well maintained.DocumentationWhile this README includes some useful information, the official and morethorough documentation can be found here:http://thobbs.github.com/phpcassaExamplesYou can find a few fully working example scripts in the examples/ directory.Opening Connections$pool = new ConnectionPool('Keyspace1');or$pool = new ConnectionPool('Keyspace1', array('localhost'));Create a column family object$users = new ColumnFamily($pool, 'Standard1');$super = new SuperColumnFamily($pool, 'Super1');Inserting$users->insert('key', array('column1' => 'value1', 'column2' => 'value2'));Querying$users->get('key');$users->multiget(array('key1', 'key2'));Removing$users->remove('key1'); // removes whole row$users->remove('key1', 'column1'); // removes 'column1'Other$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'Using the C ExtensionThe C extension is crucial for phpcassa's performance.You need to configure and make to be able to use the C extension.Note: if checkinstall is available, run sudo checkinstall in place ofsudo make install.cd ext/thrift_protocolphpize./configuremakesudo make installAdd the following line to your php.ini file:extension=thrift_protocol.soGetting HelpMailing list: phpcassa on google groupsIRC: Channel #cassandra on irc.freenode.net

Illustration Image

Build Status

phpcassa is a PHP client library for Apache Cassandra.

  • Compatible with Cassandra 0.7 through 1.2
  • Optional C extension for improved performance

phpcassa is compatible with PHP 5.3+

phpcassa is open source under the MIT license.

Deprecated

At this point, phpcassa has been deprecated and will no longer be supported.

I suggest using the DataStax PHP driver located here: https://github.com/datastax/php-driver. It supports CQL, has many excellent features, and is well maintained.

Documentation

While this README includes some useful information, the official and more thorough documentation can be found here:

http://thobbs.github.com/phpcassa

Examples

You can find a few fully working example scripts in the examples/ directory.

Opening Connections

$pool = new ConnectionPool('Keyspace1');

or

$pool = new ConnectionPool('Keyspace1', array('localhost'));

Create a column family object

$users = new ColumnFamily($pool, 'Standard1');
$super = new SuperColumnFamily($pool, 'Super1');

Inserting

$users->insert('key', array('column1' => 'value1', 'column2' => 'value2'));

Querying

$users->get('key');
$users->multiget(array('key1', 'key2'));

Removing

$users->remove('key1'); // removes whole row
$users->remove('key1', 'column1'); // removes 'column1'

Other

$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'

Using the C Extension

The C extension is crucial for phpcassa's performance.

You need to configure and make to be able to use the C extension.

Note: if checkinstall is available, run sudo checkinstall in place of sudo make install.

cd ext/thrift_protocol
phpize
./configure
make
sudo make install

Add the following line to your php.ini file:

extension=thrift_protocol.so

Getting Help

Related Articles

packages
cassandra
admin-monitor

DataStax Enterprise OpsCenter

John Doe

7/24/2018

Checkout Planet Cassandra

Claim Your Free Planet Cassandra Contributor T-shirt!

Make your contribution and score a FREE Planet Cassandra Contributor T-Shirt! 
We value our incredible Cassandra community, and we want to express our gratitude by sending an exclusive Planet Cassandra Contributor T-Shirt you can wear with pride.

Join Our Newsletter!

Sign up below to receive email updates and see what's going on with our company

Explore Related Topics

AllKafkaSparkScyllaSStableKubernetesApiGithubGraphQl

Explore Further

libraries