bleve VS Typesense

Compare bleve vs Typesense and see what are their differences.

bleve

A modern text/numeric/geo-spatial/vector indexing library for go (by blevesearch)

Typesense

Open Source alternative to Algolia + Pinecone and an Easier-to-Use alternative to ElasticSearch ⚡ 🔍 ✨ Fast, typo tolerant, in-memory fuzzy Search Engine for building delightful search experiences (by typesense)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
bleve Typesense
13 131
9,674 17,965
0.7% 2.7%
8.0 9.8
about 14 hours ago 8 days ago
Go C++
Apache License 2.0 GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

bleve

Posts with mentions or reviews of bleve. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-04.
  • Hermes v1.7
    3 projects | /r/golang | 4 Jun 2023
    I don't have the answer to that, but the project has been alive for many years. Seems maybe you should find the answer since you are developing a competing solution? Also it might be a good reference project for solving similar problems to yours. They do have bench tests you could play with https://github.com/blevesearch/bleve/blob/master/query_bench_test.go
  • Seeking a free full text search solution for large data with progress display
    5 projects | /r/golang | 26 May 2023
    I know of https://github.com/blevesearch/bleve and I think there was another project for full text search that I can't find now.
  • Any Full Text Search library for json data?
    13 projects | /r/golang | 1 Jan 2023
  • An alternative to Elasticsearch that runs on a few MBs of RAM
    65 projects | news.ycombinator.com | 24 Oct 2022
    I would be interested in such a testbed. I would also like to know how Bleve Search (https://github.com/blevesearch/bleve) turns out.

    I have for many years now a small search engine project in my free-time pipeline, but I'm before crawling even and I intend to sit for searching part after some of that.

  • What is the coolest Go open source projects you have seen?
    84 projects | /r/golang | 15 Sep 2022
  • BetterCache 2.0 (has full text search/remove, etc.)
    5 projects | /r/golang | 2 Sep 2022
    Haha. Seriously I can’t tell the difference between these libraries https://github.com/blevesearch/bleve
  • I want to dive into how to make search engines
    16 projects | news.ycombinator.com | 25 Aug 2022
    I've never worked on a project that encompasses as many computer science algorithms as a search engine. There are a lot of topics you can lookup in "Information Storage and Retrieval":

    - Tries (patricia, radix, etc...)

    - Trees (b-trees, b+trees, merkle trees, log-structured merge-tree, etc..)

    - Consensus (raft, paxos, etc..)

    - Block storage (disk block size optimizations, mmap files, delta storage, etc..)

    - Probabilistic filters (hyperloloog, bloom filters, etc...)

    - Binary Search (sstables, sorted inverted indexes, roaring bitmaps)

    - Ranking (pagerank, tf/idf, bm25, etc...)

    - NLP (stemming, POS tagging, subject identification, sentiment analysis etc...)

    - HTML (document parsing/lexing)

    - Images (exif extraction, removal, resizing / proxying, etc...)

    - Queues (SQS, NATS, Apollo, etc...)

    - Clustering (k-means, density, hierarchical, gaussian distributions, etc...)

    - Rate limiting (leaky bucket, windowed, etc...)

    - Compression

    - Applied linear algebra

    - Text processing (unicode-normalization, slugify, sanitation, lossless and lossy hashing like metaphone and document fingerprinting)

    - etc...

    I'm sure there is plenty more I've missed. There are lots of generic structures involved like hashes, linked-lists, skip-lists, heaps and priority queues and this is just to get 2000's level basic tech.

    - https://github.com/quickwit-oss/tantivy

    - https://github.com/valeriansaliou/sonic

    - https://github.com/mosuka/phalanx

    - https://github.com/meilisearch/MeiliSearch

    - https://github.com/blevesearch/bleve

    - https://github.com/thomasjungblut/go-sstables

    A lot of people new to this space mistakenly think you can just throw elastic search or postgres fulltext search in front of terabytes of records and have something decent. The problem is that search with good rankings often requires custom storage so calculations can be sharded among multiple nodes and you can do layered ranking without passing huge blobs of results between systems.

  • Why Writing Your Own Search Engine Is Hard (2004)
    5 projects | news.ycombinator.com | 23 Jul 2022
    For those curious, I'm on my 3rd search engine as I keep discovering new methods of compactly and efficiently processing and querying results.

    There isn't a one-size-fits all approach, but I've never worked on a project that encompasses as many computer science algorithms as a search engine.

    - Tries (patricia, radix, etc...)

    - Trees (b-trees, b+trees, merkle trees, log-structured merge-tree, etc..)

    - Consensus (raft, paxos, etc..)

    - Block storage (disk block size optimizations, mmap files, delta storage, etc..)

    - Probabilistic filters (hyperloloog, bloom filters, etc...)

    - Binary Search (sstables, sorted inverted indexes)

    - Ranking (pagerank, tf/idf, bm25, etc...)

    - NLP (stemming, POS tagging, subject identification, etc...)

    - HTML (document parsing/lexing)

    - Images (exif extraction, removal, resizing / proxying, etc...)

    - Queues (SQS, NATS, Apollo, etc...)

    - Clustering (k-means, density, hierarchical, gaussian distributions, etc...)

    - Rate limiting (leaky bucket, windowed, etc...)

    - text processing (unicode-normalization, slugify, sanitation, lossless and lossy hashing like metaphone and document fingerprinting)

    - etc...

    I'm sure there is plenty more I've missed. There are lots of generic structures involved like hashes, linked-lists, skip-lists, heaps and priority queues and this is just to get 2000's level basic tech.

    - https://github.com/quickwit-oss/tantivy

    - https://github.com/valeriansaliou/sonic

    - https://github.com/mosuka/phalanx

    - https://github.com/meilisearch/MeiliSearch

    - https://github.com/blevesearch/bleve

    A lot of people new to this space mistakenly think you can just throw elastic search or postgres fulltext search in front of terabytes of records and have something decent. That might work for something small like a curated collection of a few hundred sites.

  • Mattermost – open-source platform for secure collaboration
    6 projects | news.ycombinator.com | 24 Jun 2022
    Search in SQL databases is a tough beast to get it right. And given that we support MySQL and Postgres both, it gets even harder to support quirks of both of them.

    In enterprise editions, the only addition is Elasticsearch. But in our open-source version, we do have support for https://github.com/blevesearch/bleve. Although, it's in beta, we have a lot of customers using it.

    I am wondering if you have tried using it and didn't like it?

  • A Database for 2022
    13 projects | news.ycombinator.com | 1 Apr 2022

Typesense

Posts with mentions or reviews of Typesense. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-03.
  • FlowDiver: The Road to SSR - Part 1
    3 projects | dev.to | 3 May 2024
    Disregarding props-drilling technique in favor of a more reliable and elegant solution we looked for inspiration elsewhere. Another project of ours .find was using Typesense/Algolia components, which looked a bit like black-box/magic, but at the same time provided a clean approach to build complex and highly customizable solutions.
  • Release Radar · April 2024 Edition: Major updates from the open source community
    12 projects | dev.to | 3 May 2024
    Have you ever tried to look up something, only to realise your search engine doesn't recognise your typos? Typesense to the rescue! It's a fast, typo-tolerant search engine built for an easier browsing experience. The latest version comes with new features such as built-in conversational search, image search, voice search, analytics, and more. Dive into the release notes for the full list of changes and enhancements.
  • Website Search Hurts My Feelings
    2 projects | news.ycombinator.com | 26 Dec 2023
    There are actually plenty of non-ES products that are way easier to integrate and tune (and get better results with less effort).

    - Typesense (https://github.com/typesense/typesense)

    - Algolia

    - Google Programmable Search Engine (https://programmablesearchengine.google.com/about/)

  • Remote Machine Learning and Searching on a Raspberry Pi 5
    2 projects | /r/immich | 11 Dec 2023
  • Open Source alternatives to tools you Pay for
    21 projects | dev.to | 8 Dec 2023
    Typesense - Open Source Alternative to Algolia
  • DNS record "hn.algolia.com" is gone
    3 projects | news.ycombinator.com | 9 Oct 2023
    If you like your penny take a look at Typesense https://typesense.org/ - nothing to complain here. Especially nothing complain about pricing.
  • Vector databases: analyzing the trade-offs
    5 projects | news.ycombinator.com | 20 Aug 2023
    I work on Typesense [1] (historically considered an open source alternative to Algolia).

    We then launched vector search in Jan 2023, and just last week we launched the ability to generate embeddings from within Typesense.

    You'd just need to send JSON data, and Typesense can generate embeddings for your data using OpenAI, PaLM API, or built-in models like S-BERT, E-5, etc (running on a GPU if you prefer) [2]

    You can then do a hybrid (keyword + semantic) search by just sending the search keywords to Typesense, and Typesense will automatically generate embeddings for you internally and return a ranked list of keyword results weaved with semantic results (using Rank Fusion).

    You can also combine filtering, faceting, typo tolerance, etc - the things Typesense already had.

    [1] https://github.com/typesense/typesense

    [2] https://typesense.org/docs/0.25.0/api/vector-search.html

  • Creating an advanced search engine with PostgreSQL
    9 projects | news.ycombinator.com | 12 Jul 2023
    For something small with a minimal footprint, I'd recommend Typesense. https://github.com/typesense/typesense
  • Obsidian Publish full text search
    1 project | /r/ObsidianMD | 28 Jun 2023
    I haven’t used Publish, but I’d assume you could use something like https://typesense.org/ to index and search the vault.
  • DynamoDB search options
    1 project | /r/aws | 18 May 2023
    A cheaper option would be to use https://typesense.org. You can use DynamoDb streams to automatically load records. It has worked well for me.

What are some alternatives?

When comparing bleve and Typesense you can also consider the following projects:

Elasticsearch - Free and Open, Distributed, RESTful Search Engine

MeiliSearch - A lightning-fast search API that fits effortlessly into your apps, websites, and workflow

elastic - Deprecated: Use the official Elasticsearch client for Go at https://github.com/elastic/go-elasticsearch

goriak - goriak - Go language driver for Riak KV

Apache Solr - Apache Lucene and Solr open-source search software

elasticsql - convert sql to elasticsearch DSL in golang(go)

meilisearch-laravel-scout - MeiliSearch integration for Laravel Scout

goes

loki - Like Prometheus, but for logs.

elastigo - A Go (golang) based Elasticsearch client library.

sonic - 🦔 Fast, lightweight & schema-less search backend. An alternative to Elasticsearch that runs on a few MBs of RAM.