Which PHP client library to use with Cassandra?

I tried phpcassa, but what about the "PHP Cassandra client library" or "SimpleCassie"? Which one would be the best choice?

+6
source share
4 answers

(Since PHPCassa will no longer be supported, and Pandra is left , this question deserves a new answer.)

The DataStax PHP driver for Cassandra is offered by PHPCassa developers as an alternative that supports CQL, has many great features and is in good condition.

Github and official website

: PHP 7

2 (2019): PHP 7.1

+6

PHPCassa,

https://github.com/thobbs/phpcassa

+4

Check out PHP Binary CQL, which is a CQL client that uses the new binary protocol.

Blog post: http://blog.robert.mcfrazier.com/php-binary-cql/

Github: https://github.com/rmcfrazier/phpbinarycql

Disclosure: I am the author of this library, do not hesitate to submit requests for traction.

0
source

All Articles