CQL is the SQL language (structured query) used for a Cassandra query. An easy way to use cql is to try the cqlsh tool that comes with Cassandra. CLI is a command line application that can be used to query Cassandra.
There are several popular high-level C # Cassandra APIs, most of which support CQL.
- Aquiles - Includes examples, but requires some configuration (explained in the wiki )
- Hector Sharp - Not enough documentation, but thanks to their tests you can decide what to do, and I found this blog with some useful information.
- Fluent Cassandra - Some configuration is required, but getting started is very well explained in their blog .
Note You can always use the Thrift API, but I would advise him to use it as a low-level implementation and requires a lot of code to do something.
source share