Reputation:
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
Reputation: 3731
http://www.softwareprojects.com/resources/programming/t-cassandra-php-wrapper-07-1979.html
try this
Upvotes: 0
Reputation: 11
Take a look at SimpleCassie. Works with 0.7. http://code.google.com/p/simpletools-php/wiki/SimpleCassie
Upvotes: 1
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
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