php-cassandra-binary icon indicating copy to clipboard operation
php-cassandra-binary copied to clipboard

PHP library for Cassandra database via a binary protocol.

Results 35 php-cassandra-binary issues
Sort by recently updated
recently updated
newest added

Hey, I'm playing around with your driver double checking if it fits our needs and just found out that when doing batches with preparedstatements and with more than 95 statements...

Hi I just pulled the latest version of dev-master and I now get this error ``` Warning: unpack(): Type l: not enough input, need 4, have 0 in vendor/evseevnn/php-cassandra-binary/src/Protocol/Response/DataStream.php on...

Hi ``` sql CREATE TABLE users_log ( session_token ascii, user_id int, site_id int, role_id int, user_name varchar, date_start timestamp, date_stop timestamp, ip varchar, agent text, tags list, PRIMARY KEY (session_token)...

bug
in process

Hi, I hope you're ok with questions through github issues. How is the performance of this library compared to the alternatives? I notice that this is native php, without any...

It fixes #35 Someone should take a closer look at what the 6f1cae9 did intend to fix, and reapply a patch that does not break so fundamentally. It might very...

If in an int column (for example) a null value was inserted, that value was read as null which was not correct. If there were more columns after that one,...

The method readbytes is not capable to diferentiate if the readed value is null or an empty string ![captura de pantalla 2014-10-27 a les 15 49 49](https://cloud.githubusercontent.com/assets/6720169/4792725/e814dc22-5de8-11e4-9e75-641cade948cf.png) substr returning false...

A note: I'm using a backported version of this code **release v0.1.0** to PHP 5.3 (made by me), I'm using this with Cassandra 2.0.9, so I don't know if this...

Here is my code. I think there is a encoding/decoding or response parse problem. ``` php require_once 'vendor/autoload.php'; $nodes = array( '127.0.0.1:9042' => array( 'username' => 'cassandra', 'password' => 'cassandra'...

in process