Contents
IF YOU ARE A CLIENT LIBRARY WRITER please update this list as your libraries become compatible with the newest version of cassandra.
CQL
New projects should use CQL. Sending CQL over the wire is not hard, but clients here provide connection pooling, failover, and often other benefits like tracing support.
- Python:
cqlengine: https://github.com/bdeggleston/cqlengine
Pycassa: http://github.com/pycassa/pycassa
- Java:
- Node.js
- Clojure
alia: https://github.com/mpenet/alia (datastax/java-driver wrapper)
hayt (CQL3 query generation): https://github.com/mpenet/hayt
Cassaforte (CQL3): http://clojurecassandra.info
- .NET
- Ruby:
- cql-rb:
- PHP:
- Perl:
perlcassa: https://github.com/mkjellman/perlcassa
- Go
- Haskell
Thrift
For older Thrift clients, see ClientOptionsThrift.
Internal API
The StorageProxy API is available to JVM-based clients, but unless you really know that you need it you should probably be using a higher-level client listed above or, failing that, the Thrift API. The StorageProxy API is intended for internal use, and highly specialized use-cases.
Hadoop
Running Hadoop map/reduce jobs in Cassandra is described in HadoopSupport.