php-cassandra-binary
php-cassandra-binary copied to clipboard
PHP library for Cassandra database via a binary protocol.
Fatal error: Uncaught exception 'evseevnn\Cassandra\Exception\ConnectionException' with message 'Protocol error: Invalid or unsupported protocol version (1); the lowest supported version is 3 and the greatest is 4' in C:\wamp\www\vendor\evseevnn\php-cassandra-binary\src\Database.php:75
API does not work for me, I try to make connection but is carrying up to timeout error, debugging api, I realized that the **fetchData** method of the **Connection** class,...
This is my code namespace evseevnn; include_once(**DIR**.DIRECTORY_SEPARATOR."vendor".DIRECTORY_SEPARATOR."autoload.php"); ``` $nodes = [ '127.0.0.1', '127.0.0.1:9042' => [ 'username' => '', 'password' => '' ] ]; // Connect to database. $database = new...
I'm starting try use this lib, but it have that error at index.php file My php is 5.5 My code here: $nodes = [ 127.0.0.1' ]; try { // Connect...
Hi! It has been a while since there was a release created. Could you create a new release? Thanks! Koen
Is there a way to make Conditional updates supported? When I'm adding IF NOT EXISTS I'm getting: Invalid: Conditional updates are not supported by the protocol version in use. You...
There is a bug when you have a NULL column from Big Int data type. The code throws the message "Reading while at end of stream" and gives a PHP...
can't connect to cassandra if I use host as a key and username, password as a value ``` $nodes = [ '192.168.0.2:8882' => [ 'username' => 'admin', 'password' => 'pass']...
For now timeout defined hardcoded. Please add option timeout for constructor
I noticed that LOCAL_ONE consistency level does not work due to an error in ConsistencyEnum.php. The correct value for it is: const CONSISTENCY_LOCAL_ONE = 0xA; the current value is 0x0010,...