-
Notifications
You must be signed in to change notification settings - Fork 353
Java driver direct cql3
opuneet edited this page Jan 9, 2014
·
4 revisions
Astyanax allows users to use CQL3 directly. Here's an example. Consider the following simple schema.
Basic Setup
ColumnFamily<Integer, String> CF_EMPLOYEES =
new ColumnFamily<Integer, String>("EmployeeInfo",
IntegerSerializer.get(),
StringSerializer.get());
A Netflix Original Production
Tech Blog | Twitter @NetflixOSS | Jobs
- Getting-Started
- Configuration
- Features
- Monitoring
- Thread Safety
- Timeouts
- Recipes
- Examples
- Javadoc
- Utilities
- Cassandra-Compatibility
- FAQ
- End-to-End Examples
- Astyanax Integration with Java Driver