-
Notifications
You must be signed in to change notification settings - Fork 354
Reading Data
elandau edited this page Nov 29, 2012
·
7 revisions
Column<String> result = keyspace.prepareQuery(CF_STANDARD1)
.getKey(rowKey)
.getColumn("Column1")
.execute().getResult();
String value = result.getStringValue();
ColumnList<String> result = keyspace.prepareQuery(CF_STANDARD1)
.getKey(rowKey)
.execute().getResult();
if (!result.isEmpty()) {
...
}
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