Re: Custom Java class for secondary index implementation

2016-03-07 Thread Henry Manasseh
On Mon, Mar 7, 2016 at 10:06 AM Henry Manasseh wrote: > From my review so far (I am new to the casssandra code base) it seems > users could extend RegularColumnIndex, CollectionValueIndex, etc... but > this will likely require being able to override the CassandraIndex.insert > met

Re: Custom Java class for secondary index implementation

2016-03-07 Thread Henry Manasseh
d it? > > > https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/index/internal/CassandraIndex.java > > > -- Jack Krupansky > > On Sun, Mar 6, 2016 at 11:03 PM, Henry Manasseh > wrote: > > > Thank you. This is a perfect class for to sta

Re: Custom Java class for secondary index implementation

2016-03-06 Thread Henry Manasseh
Thank you. This is a perfect class for to start experimenting with. On Sun, Mar 6, 2016 at 2:38 PM Sam Tunnicliffe wrote: > You might find o.a.c.i.StubIndex in the test source tree useful. > On 6 Mar 2016 19:24, "Henry Manasseh" wrote: > > > Hello, > > I was wo

Custom Java class for secondary index implementation

2016-03-06 Thread Henry Manasseh
Hello, I was wondering if anyone is aware of a minimal reference implementation for a java class implementing a secondary index or some documentation of the interface(s) I would need to implement (I looked at the SASI 2i code but I am trying to find the bare bones test or sample class for a newbie