Skip to content

Instantly share code, notes, and snippets.

@dfilppi
Created June 26, 2012 16:37
Show Gist options
  • Save dfilppi/2996949 to your computer and use it in GitHub Desktop.
Save dfilppi/2996949 to your computer and use it in GitHub Desktop.
annotation driven document def
@SpaceDocument(name="Product")
@Persistent(persistTo={CassandraEDS.class,HdfsPersisterEDS.class}, loadFrom=CassandraEDS.class)
public class Product {
@DocumentId
Integer catalogNumber;
@DocumentRouting
String category;
@DocumentFixedField
@DocumentIndex(indexType=IndexType.BASIC)
String name;
@DocumentFixedField
@DocumentIndex(indexType=IndexType.EXTENDED)
Double price;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment