user375566
user375566

Reputation:

PHP client that supports .7 Cassandra?

I looked into Cassandra Wrapper, but the download from a blog that claimed to update the client was missing files. Anyone gotten PHPcassa or another client to work with .7 beta of Cassandra?

Upvotes: 3

Views: 676

Answers (4)

Howard Lee
Howard Lee

Reputation: 11

Take a look at SimpleCassie. Works with 0.7. http://code.google.com/p/simpletools-php/wiki/SimpleCassie

Upvotes: 1

Tyler Hobbs
Tyler Hobbs

Reputation: 6932

The Thrift interface is actually pretty painful if you don't know what you're doing.

My answer to this question is a bit late, but it might be useful for others: I've put some time in to make phpcassa work with Cassandra 0.7 here: https://github.com/thobbs/phpcassa

Upvotes: 3

Stephen Holiday
Stephen Holiday

Reputation: 745

The thrift interface is really easy to work with and you can generate it for many languages.

The API is described well. Any wrapper is just going to use thrift. You will have to learn someone else's API anyway so why go through another level of abstraction ans slow down your app?

Upvotes: 1

Related Questions