Are there any php extensions for cassandra yet like the php_mysql extension, or are there any PHP wrappers available. I have seen phpCassa and similar ones but it doesnt quite have the same flexibility as the CQL (plus i hear it may be faster to use CQL, not sure why...)

See CQL!

link|improve this question
feedback

3 Answers

There's a PDO CQL driver, which seems like exactly what you're looking for.

link|improve this answer
yea i saw that page but theres nothing to download there, just points to the php.net page describing PDO – Chris Nov 18 '11 at 9:24
1  
Looks like you have to check out the source from git - code.google.com/a/apache-extras.org/p/cassandra-pdo/source/… - no download package yet. – Theodore Hong Nov 18 '11 at 10:20
feedback

https://wiki.fourkitchens.com/display/PF/Using+Cassandra+with+PHP

Have you read this yet? Seems like it gives you a few options to interact with Cassandra directly from PHP

Here is an example of the code you could use in PHP. Seems SQL-esque enough to me:

http://wiki.apache.org/cassandra/ThriftExamples#PHP

link|improve this answer
feedback

I hope this might help you as well

http://itsallabtamil.blogspot.com/search/label/cassandra

Part 1 explains how to use PHPCassa to connect to Cassandra and fetch data via CQL

This is using PHPCassa

Regards, Tamil

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.