bolt

By boltdb

Bolt Alternatives

Similar projects and alternatives to bolt

  1. go

    2,237 bolt VS go

    The Go programming language

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. calibre

    864 bolt VS calibre

    The official source code repository for the calibre ebook manager

  4. prometheus

    The Prometheus monitoring system and time series database.

  5. litestream

    Streaming replication for SQLite.

  6. rqlite

    124 bolt VS rqlite

    The lightweight, user-friendly, distributed relational database built on SQLite.

  7. cockroach

    111 bolt VS cockroach

    CockroachDB — the cloud native, distributed SQL database designed for high availability, effortless scale, and control over data placement.

  8. chi

    105 bolt VS chi

    lightweight, idiomatic and composable router for building Go HTTP services

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. Weaviate

    82 bolt VS Weaviate

    Weaviate is an open-source vector database that stores both objects and vectors, allowing for the combination of vector search with structured filtering with the fault tolerance and scalability of a cloud-native database​.

  11. sqlx

    73 bolt VS sqlx

    general purpose extensions to golang's database/sql

  12. immudb

    53 bolt VS immudb

    immudb - immutable database based on zero trust, SQL/Key-Value/Document model, tamperproof, data change history

  13. badger

    30 bolt VS badger

    Fast key-value DB in Go.

  14. bbolt

    19 bolt VS bbolt

    An embedded key/value database for Go.

  15. goleveldb

    LevelDB key/value database in Go.

  16. clover

    A lightweight document-oriented NoSQL database written in pure Golang. (by ostafen)

  17. buntdb

    7 bolt VS buntdb

    BuntDB is an embeddable, in-memory key/value database for Go with custom indexing and geospatial support

  18. chai

    13 bolt VS chai

    Modern embedded SQL database (by chaisql)

  19. dbr

    0 bolt VS dbr

    Additions to Go's database/sql for super fast performance and convenience.

  20. go-concurrency-exercises

    Hands on exercises with real-life examples to study and practice Go concurrency patterns. Test-cases are provided to verify your answers.

  21. logpaste

    A simple web service for storing text log files

  22. SQLite

    51 bolt VS SQLite

    Official Git mirror of the SQLite source tree

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better bolt alternative or higher similarity.

bolt discussion

Log in or Post with

bolt reviews and mentions

Posts with mentions or reviews of bolt. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-24.
  • Bleve: How to build a rocket-fast search engine?
    1 project | dev.to | 18 Dec 2024
    Bleve supports a few different index types, but I found after much fiddling that the "scorch" index type gives you the best performance. If you don't pass in the last 3 arguments, Bleve will just default to BoltDB.
  • Announcing jammdb: a simple single-file key/value store
    4 projects | /r/rust | 24 Feb 2023
    This crate started out as just a way for me to learn how boltdb works, while learning Rust at the same time. But somehow people started finding and using it and seem to like the simple API, so I figured I might as well share it in case someone else finds it useful too. If you want to know more about my motivations and the history of this crate, you can read the release notes on version 0.8.0!
  • Polygon: Json Database System designed to run on small servers (as low as 16MB) and still be fast and flexible.
    7 projects | /r/golang | 29 Jan 2023
    Some example of embeddable database could be genji, badger and boltdb
  • Resource for making database from scratch
    13 projects | /r/golang | 11 Nov 2022
  • Ask HN: Books on designing disk-optimized data structures?
    1 project | news.ycombinator.com | 24 Sep 2022
    Designing Data Intensive applications- specifically chapter 3 and 4 which deal with strategies and algorithms for storing and encoding data to be stored on disk and their pros and cons.

    Once you read that, I'll suggest reading the source of a simple embedded key-value database, I wouldn't bother with RDBMs as they are complex beasts and contain way more than you need. BoltDB is a good project to read the source of https://github.com/boltdb/bolt, the whole thing is <10k lines of code and is a full blown production grade system with ACID semantics so packs a lot in those 10k and isn't just merely a toy.

  • GitHub examples of Go that's written really well?
    12 projects | /r/golang | 15 Aug 2022
    Bolt db and Bolt db's author post to go with it.
  • Open Source Databases in Go
    52 projects | /r/golang | 8 Jun 2022
    https://github.com/boltdb/bolt is a ACID B+ tree key-value store
  • A Database for 2022
    13 projects | news.ycombinator.com | 1 Apr 2022
  • Single Dependency Stacks
    3 projects | news.ycombinator.com | 9 Feb 2022
    For a single server, SQLite, or boltdb[0]

    I've never had to scale horizontally. I develop in Go and you can get very far along with just vertical scaling (aka beefier hardware).

    Therefore I can't give concrete examples of a distributed db-as-a-library.

    But all that you need is to extend the functions that fetch data to not just fetch from disk but from "peers" as well. For this to work you need servers (instances) to know about each other, and as you add more they also get added to their peers - sort of like a bittorrent network. I don't think it's difficult to do.

    SQLite might not be suited for being distributed (although RQlite[1] claims to have done it).

    Making a distributed data storage based on boltdb[0] is probably more feasible.

    Whatever the case, there's no reason why a data storage engine can't be a library, even if it's distributed.

    [0]: https://github.com/boltdb/bolt

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

  • How can I batch events in second intervals?
    1 project | /r/golang | 21 Jan 2022
  • A note from our sponsor - SaaSHub
    www.saashub.com | 25 Mar 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic bolt repo stats
23
11,201
0.0
about 7 years ago

Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that Go is
the 4th most popular programming language
based on number of references?