Re: Golang + Cassandra + Text Search

2017-10-24 Thread Justin Cameron
https://github.com/Stratio/cassandra-lucene-index is another option - it plugs a full Lucene engine into Cassandra's custom secondary index interface. If you only need text prefix/postfix/substring matching or basic tokenization there is SASI. On Wed, 25 Oct 2017 at 03:50 Who Dadddy

Re: Golang + Cassandra + Text Search

2017-10-24 Thread Who Dadddy
Ridley - have a look at Elassandra https://github.com/strapdata/elassandra > On 24 Oct 2017, at 06:50, Ridley Submission > wrote: > > Hi, > > Quick question, I am wondering if anyone here who works with Go has

Re: Golang + Cassandra + Text Search

2017-10-24 Thread Jon Haddad
When someone talks about full text search, I usually assume there’s more required than keyword search, ie simple tokenization and a little stemming. * Term Vectors, common used for a “more like this feature” * Ranking of search results * Facets * More complex tokenization like trigrams So

Re: Golang + Cassandra + Text Search

2017-10-24 Thread DuyHai Doan
There is already a full text search index in Cassandra called SASI On Tue, Oct 24, 2017 at 6:50 AM, Ridley Submission < ridley.submission2...@gmail.com> wrote: > Hi, > > Quick question, I am wondering if anyone here who works with Go has > specific recommendations for as simple framework to add

Golang + Cassandra + Text Search

2017-10-23 Thread Ridley Submission
Hi, Quick question, I am wondering if anyone here who works with Go has specific recommendations for as simple framework to add text search on top of cassandra? (Apologies if this is off topic—I am not quite sure what forum in the cassandra community would be best for this type of question)