phpcassa icon indicating copy to clipboard operation
phpcassa copied to clipboard

PHP client library for Apache Cassandra

Results 13 phpcassa issues
Sort by recently updated
recently updated
newest added

Hi, I still need to use it on a legacy PHP 5.3 service. what prevent us to use it with latest versions of cassandra? you said "deprecated", does it mean...

Hii, i'm getting the below error while running a example file called basic.php. It was working till yesterday but from today it has stopped Working and i haven't changed anything...

Useful for working on clusters with nodes down (eg. with Cassandra Cluster Admin)

More user friendly error message for higher level clients to ask why something happened, possibly could also be incorporated directly in the error message if the cassandra error is known,...

Maybe we need CompositeTypes and DynamicCompositeTypes classes (http://www.slideshare.net/edanuff/indexing-in-cassandra) instead of array. Am I right about this: a key_validation_class can have only 2 types/datafields and a comparator as much as you'd...

enhancement

Would be nice, if there is a method that clears all en-queued actions in the Mutator object. $mut->insert(); $mut->insert(); ... $mut->discard(); This is different issue, but I also don't see...

# v1 UUID incorrect With time: '2012-06-06 00:00:00' 'America/Los_Angeles' With phpcassa I get: 31973f60-1dd5-11b2-888f-4d43d6cc3201 With pycassa I get: 3b77d800-afa5-11e1-8080-808080808080 The first half is way off. The second half doesn't matter...

While using TBufferedTransport instead of default TFramedTransport like in following example : ``` php $framed = false; $pool = new ConnectionPool($keyspace,$servers,null,5,5000,5000,10000,null,$framed); $cf = new ColumnFamily($pool,'User'); $result = $cf->get('1056'); ``` ```...

What is the syntax to batch_insert into a Composite RowKey? On regular Insert the key is array of values. No problem there. I've tried: serialize( array(1,2)) as KEY CF CompisiteType...