You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@cassandra.apache.org by Ridley Submission <ri...@gmail.com> on 2017/10/24 04:50:39 UTC

Golang + Cassandra + Text Search

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)

Thanks,
Riley

Re: Golang + Cassandra + Text Search

Posted by Jon Haddad <jo...@jonhaddad.com>.
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 anyway, I don’t know if the OP had those requirements, but it’s important to keep in mind. 


> On Oct 24, 2017, at 1:33 AM, DuyHai Doan <do...@gmail.com> wrote:
> 
> There is already a full text search index in Cassandra called SASI
> 
> On Tue, Oct 24, 2017 at 6:50 AM, Ridley Submission <ridley.submission2015@gmail.com <ma...@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 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)
> 
> Thanks,
> Riley
> 


Re: Golang + Cassandra + Text Search

Posted by DuyHai Doan <do...@gmail.com>.
There is already a full text search index in Cassandra called SASI

On Tue, Oct 24, 2017 at 6:50 AM, Ridley Submission <
ridley.submission2015@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 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)
>
> Thanks,
> Riley
>

Re: Golang + Cassandra + Text Search

Posted by Justin Cameron <ju...@instaclustr.com>.
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 <qw...@gmail.com> wrote:

> Ridley - have a look at Elassandra
> https://github.com/strapdata/elassandra
>
>
> On 24 Oct 2017, at 06:50, Ridley Submission <
> ridley.submission2015@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 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)
>
> Thanks,
> Riley
>
>
> --


*Justin Cameron*Senior Software Engineer


<https://www.instaclustr.com/>


This email has been sent on behalf of Instaclustr Pty. Limited (Australia)
and Instaclustr Inc (USA).

This email and any attachments may contain confidential and legally
privileged information.  If you are not the intended recipient, do not copy
or disclose its content, but please reply to this email immediately and
highlight the error to the sender and then immediately delete the message.

Re: Golang + Cassandra + Text Search

Posted by Who Dadddy <qw...@gmail.com>.
Ridley - have a look at Elassandra
https://github.com/strapdata/elassandra <https://github.com/strapdata/elassandra>


> On 24 Oct 2017, at 06:50, Ridley Submission <ri...@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 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)
> 
> Thanks,
> Riley