Best Software for 2025 is now live!
Show rating breakdown
Save to My Lists
Claimed
Claimed

Top Rated BoltDB Alternatives

BoltDB Reviews & Product Details

Adrian L.
AL
Co-Founder and CEO
Computer Software
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

BoltDB's simple API makes it fast and easy to get setup and allows you to get back to solving business problems. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

Large bulk writes are slow, so the initial loading of the database with data can take a while but this is pointed out in the documentation and the reasons for that. Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

I have utilised BoltDB in several command line utilities that have required lightweight persistence. Review collected by and hosted on G2.com.

BoltDB Overview

What is BoltDB?

BoltDB is an embedded key/value database for Go.

BoltDB Details
Discussions
BoltDB Community
Show LessShow More
Product Description

BoltDB is an embedded key/value database for Go.


Seller Details
Seller
BoltDB
HQ Location
N/A
Twitter
@boltdb
328 Twitter followers

Ben J.
BJ
Overview Provided by:
Open Source Developer

Recent BoltDB Reviews

Verified User
A
Verified UserSmall-Business (50 or fewer emp.)
4.5 out of 5
"An easy-to-use embedded DB"
Bolt is really easy to use. It's written in go, so you don't need to install any dependencies to get it work - include Bolt to your source and you'...
Mohamed C.
MC
Mohamed C.Small-Business (50 or fewer emp.)
5.0 out of 5
"Simplifier"
portability and simplicity to setup in dev process
Christian W.
CW
Christian W.Mid-Market (51-1000 emp.)
4.0 out of 5
"Bolt offers an extremely simple database solution for lightweight and embedded purposes."
My favourite feature is how small you can keep your database, which is great for embedded linux systems where storage is a premium. The fact that i...
Security Badge
This seller hasn't added their security information yet. Let them know that you'd like them to add it.
0 people requested security information

BoltDB Media

Answer a few questions to help the BoltDB community
Have you used BoltDB before?
Yes

17 out of 18 Total Reviews for BoltDB

4.4 out of 5
The next elements are filters and will change the displayed results once they are selected.
Search reviews
Popular Mentions
The next elements are radio elements and sort the displayed results by the item selected and will update the results displayed.
Hide FiltersMore Filters
The next elements are filters and will change the displayed results once they are selected.
The next elements are filters and will change the displayed results once they are selected.
17 out of 18 Total Reviews for BoltDB
4.4 out of 5
17 out of 18 Total Reviews for BoltDB
4.4 out of 5

Overall Review Sentiment for BoltDBQuestion

Time to Implement
<1 day
>12 months
Return on Investment
<6 months
48+ months
Ease of Setup
0 (Difficult)
10 (Easy)
Log In
Want to see more insights from verified reviewers?
Log in to view review sentiment.
G2 reviews are authentic and verified.
Karolis R.
KR
Senior Software Engineer
Computer Software
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Verified Current User
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

Super fast mmap implementation where operating system caches everything. Reduced dependencies and persistence storage. It also enables transactions and due to the fact that it's embedded - no connection pool. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

Lack of scalability options, it can bring you up to speed very quickly and let you process a lot of stuff, but when you need to scale horizontally - you will have to look for other projects. Review collected by and hosted on G2.com.

Recommendations to others considering BoltDB:

Check out caveats and limitations, don't use byte slices blindly, write those bytes to buffer before ending transaction. That's not very clear through the documentation, just keep that in mind.

Also, understand that it's not a silver bullet for everything, if you need to something that has schema and relations - bolt is not for you. If you are working on a web app that will be deployed to container and then automatically scaled - bolt is not for you. Design better interfaces in your application to easily change backends, that will help you later. Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

Service virtualization, capturing/virtualizing/synthesizing external APIs. BoltDB helped to make our tool Hoverfly truly autonomous with zero dependencies, very easy to deploy and achieve superb performance. Migrating from Redis to BoltDB increased requests per second from ~400 to ~850. Review collected by and hosted on G2.com.

Christian W.
CW
Dev Ops / Full Stack Engineer / M2M Embedded Developer
Renewables & Environment
Mid-Market(51-1000 emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

My favourite feature is how small you can keep your database, which is great for embedded linux systems where storage is a premium. The fact that it is written in pure Go, and the stack I wrote was also pure Go was great, so I didn't have to struggle with cross-compilation of something written in C-with-Go-binding. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

The limitation of 1 process per database actively running means you can't use it to simply share state between multiple active applications, which hampered my original software stack design. Review collected by and hosted on G2.com.

Recommendations to others considering BoltDB:

I cannot speak to the side of scalabilty or performance under extreme load conditions, but for my purpose of using it for a low-spec, storage sparse, embedded platform it worked well and was nice and easy to setup.

For that purpose, I would definitely recommend BoltDB, and use it again myself. Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

The business case was to build an embedded Linux software stack for an IoT'esque M2M device to record data off various pieces of hardware, and push it back over the wire to cloud servers.

The benefits of having an embedded database meant not having to draft up convoluted ideas on how to store data that has yet to be sent, for example in the case of communication failure of the GSM network, or even device failure due to loss of power. This made it simple to "pick up and go" from the last known point without having to deserialize data from disk, mung it together, pack it up and sent it over the wire. Review collected by and hosted on G2.com.

Osiloke E.
OE
CTO
Computer & Network Security
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

When i started with go (as an alternative to django/python and its, you know problems) while developing my various apps. I needed a database but i'm broke :), because i quit my job and moved to africa to, you know, bill gates charity it up. I needed to create something quick to attract investors. I did not want to spend any more dollars(i had no more) and i needed to create something real quick as a demo for my potential investors. Bolt was to the rescue. I was able to create my own parse api quickly and fast.

Bolt allows (in addition to a layer i created) to quickly prototype apps that run locally.

It allowed me to create a cache system for my free wifi system (based on ledisdb based on boltdb). etc Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

Well, what i dislike about boltdb allowed me to create a solution for it. I needed relationships, so i created a library that provides that feature. At the end of the day i think i learned more about databases by adding that feature. Review collected by and hosted on G2.com.

Recommendations to others considering BoltDB:

It is a useful tool in prototyping and can actually be used in production based on your needs. I believe cockroachdb is using it and also ledisdb which i use for caching. Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

Well, i had initially wanted to create a service similar to parse api that i could run locally in Nigeria. I ended up using rethinkdb as my primary database source but boltdb helped me in the initial prototyping stages, It opens me up to indexing based in the form of bleve search. It has allowed me to prototype new apps quickly. For eg, i used bolt and bleve to prototype a traffic monitoring app. Review collected by and hosted on G2.com.

Peter E.
PE
Software Developer, Sysadmin, DBA
Government Administration
Enterprise(> 1000 emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

A pure go persistence solution that supports transactions and is both well documented and reliable.

It's documentation and easy to use API make it fairly easy to embed persistence into your go applications. BoltDB provides fully serializable ACID transactions which guarantees reliability in processing. It also provides range scanning functionality through items in order via it's bucket Cursor method as well as provides prefix searching capabilities. BoltDB also allows for easy implementation of hot backups as well as grabbing of statistics snapshots. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

While being a key-value allows BoltDB a lower learning curve than most relational DBs, it also means you have to write the logic to sufficiently make use of your data. Also, being a new kid on the block (Go as well), usually you have to sell it to project owners. Review collected by and hosted on G2.com.

Recommendations to others considering BoltDB:

BoltDB is a fast and reliable persistence solution already in use at companies like Heroku and Shopify. The project author is active on Github and the repo has gathered a community around it. As far as Golang key-value pairs data storage goes, BoltDB is the only option in my opinion. Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

I use boltdb to provide persistence to custom devops apps and integrating it into in-house microservices for survivability. Since it's written in Go, custom apps are still single static binaries, which I can just give a user an executable and still enjoy reliable persistence. Review collected by and hosted on G2.com.

George M.
GM
Software Engineer
Broadcast Media
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

Simplicity of the libraries API. The fact that it is an embedded database, which uses a file for storage makes portability and reuse between my applications. Very quick as long as you're using it for the right purpose. The Bolt team are very open about the caveats of Bolt. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

Difficult to give much constructive criticism. For small applications or byte ordered data, bolt is your tool. I imagine if you're going to plug any large volume of data through it, I would just ensure that you need your data to be stored sequentially. I wouldn't use it necessarily as some kind of cache layer, due to IO and having to implement some kind of eviction policy. Review collected by and hosted on G2.com.

Recommendations to others considering BoltDB:

Read the caveats. Make sure you're solving a problem that suits BoltDBs capabilities. Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

I used BoltDB to build information from docker container builds. The output of those tasks, when they happened and to store configuration for performing a build. I have also investigated using it as a general purpose content storage solution. I think more investigation is required for bolt as a storage layer, however, I am optimistic. I think the bleve projects use of BoltDB for storing searchable indexes to enable full-text search, is a promising example of Bolts flexibility. Review collected by and hosted on G2.com.

Verified User in Internet
UI
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

Entirely written in Go, meaning that it's easy for me to dig in to the internals if I had an issue. Offers an interesting alternative to leveldb. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

The golang API is different from a other databases such as leveldb. Refactoring my code to use boltdb instead of leveldb was painful, presumably the resulting performance boost for using the batch API on a small database was negligible/nil.

The documentation also doesn't make it immediately clear on how best to handle state when using closures. Review collected by and hosted on G2.com.

Recommendations to others considering BoltDB:

P.S. "Confirm yourself as a user by uploading a screenshot showing you logged into this product." , what? who wrote this survey? Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

Geographic search engine. In the end I opted for ledisdb because it abstracts many APIs in to a single API, meaning that I only needed to implement a single API and then test on multiple backends.

P.S. I'm not sure about the options in the dropdown below, so I'm selecting 'User', none of these are software developer roles!? Review collected by and hosted on G2.com.

Verified User in Higher Education
AH
Enterprise(> 1000 emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

Bolt is an impressive package. I like the fact that it is written in pure Go as I am a software engineer on a team that primarily uses Go for development. I know that Bolt stores its data in a B+ tree data store, which I'm sure is one reason why it has great performance. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

Although my experience was mostly positive, parts of the setup process required more time than expected. When inserting data into the database initially, it took many hours to build a relatively small database. We later found that sorting the data before adding it the database made all the difference and the time to create the database dropped from hours to a couple of minutes.

Another observation is that the database grows in size when adding files (as expected), but it never seemed to shrink in size when files were deleted. Review collected by and hosted on G2.com.

Recommendations to others considering BoltDB:

To developers...

Read the documentation well

Sort data before inserting into the database Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

My primary experience using Bolt was to build a parallel database optimized for read performance. The project I built had the Bolt database stored on 32 nodes. When a query is run, the database is divided among the available nodes and then each node queries its part of the database and the results of node are aggregated together. Review collected by and hosted on G2.com.

Dan E.
DE
Senior Software Developer
Human Resources
Enterprise(> 1000 emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

I like that it's easy to drop into an existing Go project and get started quickly. I like the examples on the Github site. I like that you don't have to install a full database installation to store / fetch / lookup data. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

I don't like that data sharing isn't straight forward. I don't like that clustering (while it might be overkill for most) is a no-go. I don't like that moving data from one file to another isn't straightforward -- but I like that it is doable with tools like https://github.com/hashicorp/raft-boltdb Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

Data lookups / data caching / simple application storage. I like the ease of use. Review collected by and hosted on G2.com.

WH
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Verified Current User
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

BoltDB's portability on Windows/Mac/Etc. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

Bucket iteration API. could be made simpler. Review collected by and hosted on G2.com.

Recommendations to others considering BoltDB:

I recommend BoltDB as a lightweight embedded solution with all the features being cross platform on Mac, Windows and Linux. Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

By using BoltDB as a database for animation tracking, we can store up to 10,000+ key values inside the database without expecting a storage bottleneck for our users who install our program. It is almost seamless to use. Review collected by and hosted on G2.com.

Verified User in Information Technology and Services
AI
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Review source: G2 invite
Incentivized Review
What do you like best about BoltDB?

Bolt is really easy to use. It's written in go, so you don't need to install any dependencies to get it work - include Bolt to your source and you're ready.

Bolt supports transactions. Actually, you can't do anything without a transaction. Good for Bolt - it makes transactions very easy and transparent.

Though Bolt is a key-value storage, it supports nested collections (a.k.a. batches). It's a killer feature when you need to use namespaces.

Bolt is very good on workloads. Review collected by and hosted on G2.com.

What do you dislike about BoltDB?

Bolt is not good at write workloads.

Bolt increases DB size exponentially. You can get a big DB very fast.

Bolt uses memory-mapped files. This thing and exponentially growing DB makes Bolt a great memory eater. Review collected by and hosted on G2.com.

What problems is BoltDB solving and how is that benefiting you?

I used to use Bolt for logs storage system. Review collected by and hosted on G2.com.