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?
Asked
Active
Viewed 667 times
4 Answers
3
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

Tyler Hobbs
- 6,872
- 24
- 31
1
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?

Stephen Holiday
- 715
- 5
- 11
1
Take a look at SimpleCassie. Works with 0.7. http://code.google.com/p/simpletools-php/wiki/SimpleCassie

Howard Lee
- 11
- 1