Files
spring-data-cassandra/src/main
Mark Paluch 9d3e12e3c4 DATACASS-306 - Create SASI indexes for annotated properties.
We now create SASI (SSTable Attached Secondary Index) indexes during session initialization for properties annotated with @SASI. Properties can be annotated with analyzer-annotations to configure analyzers.

@Table
public class Person {

		@Id String id;

		@SASI String names;

    @SASI @StandardAnalyzed(value = "de",
                enableStemming = true, normalization = Normalization.UPPERCASE,
                skipStopWords = true) String profession;

		@SASI @NonTokenizingAnalyzed String country;
}
2017-07-23 22:02:27 -07:00
..