Bleve: Full-text search and indexing for Go
31–40 of 65 posts
Re: Bleve: Full-text search and indexing for Go
#32I actually used this recently in a small personal project, it's pretty good. It's not like Elastic or Solr, more like Lucene - which may very well be good enough for your use case. The index structures are stored in BoltDB (which stores in a flat file.) There are some issues, though. For example I think it's currently not possible to use the built-in query language to search Boolean values. So you might run into some…
Re: Bleve: Full-text search and indexing for Go
#33Re: Bleve: Full-text search and indexing for Go
#34Go fanboy here, we write almost everything in Go over here at Stream. I'm curious though, what made you build your own instead of using Elastic?
Re: Bleve: Full-text search and indexing for Go
#35Core contributor here, happy to try and answer any questions. One of the big things we're working on at the moment is improving the release process. In addition to semantic versioning of the APIs we have to think through how it applies to the binary artifacts created. We want Go modules to be supported and be a part of the solution, but we are also mindful not to break things for existing users.
Re: Bleve: Full-text search and indexing for Go
#36Go fanboy here, we write almost everything in Go over here at Stream. I'm curious though, what made you build your own instead of using Elastic?
However, many of those same users complained about having to operate another cluster, especially ones that weren't already using the JVM (since it was a skill set they didn't have).
So, the appeal was to offer a service that runs as a part of the Couchbase cluster. It wouldn't have to match every feature of ES, just shoot for 80/20 and customers would likely find it beneficial.
It was fortunate that Go was still growing in popularity within Couchbase at that time, and we were able to position Bleve as a true open-source component, on top of which some money-making value add could be layered.
Re: Bleve: Full-text search and indexing for Go
#37Any thoughts on how Bleve compares with Xapian or Trinity (C++ libraries for full-text indexing)?
Re: Bleve: Full-text search and indexing for Go
#38Re: Bleve: Full-text search and indexing for Go
#39I've also been working on a simple, fast, typo-tolerant search engine. Shameless plug: https://github.com/typesense/typesense
Just teasing you.
You should contrast it with Xapian and Phaistos Trinity on your README.
Re: Bleve: Full-text search and indexing for Go
#40To get a feel for the size of Bleve, checkout this graph that shows commit rates doing into Bleve versus Elasticsearch and Vespa: http://blog.minimum.se/assets/elasticsearch-open-source-comm... If you don't need heavy lifting, then "sonic" implemented in rust is a really nice lean alternative too: https://github.com/valeriansaliou/sonic FWIW, that graph is from a blog post I published earlier today: http://blog.minim…