goleveldb
bbolt
Our great sponsors
goleveldb | bbolt | |
---|---|---|
13 | 12 | |
5,117 | 5,539 | |
- | 2.7% | |
1.7 | 4.1 | |
10 days ago | about 1 month ago | |
Go | Go | |
BSD 2-clause "Simplified" License | MIT License |
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.
goleveldb
- A Database for 2022
-
An IndexedDB clone in pure Go
I wanted to get deeper insights into both indexeddb and leveldb, so decided to write an indexeddb wrapper around goleveldb.
-
What type of software do you write at your workplace?
https://github.com/syndtr/goleveldb for heavy-duty local data storage.
-
Embedded write-heavy on-disk cache, write-amplification
We're using go-leveldb for a reasonably high-load case here at my $dayjob.
-
Best way to store logs?
I would used some embedded kv store like go-leveldb or bolt. Key is BigEnding timestamp + optional tail to allow duplicate timestamps.
-
Memory leack (?) with pprof on graphql server
I'm using the leveldb https://github.com/syndtr/goleveldb for the moment because I'm developing the architecture. Mh, leveldb support the only the inmem db? :/
- IceFireDB:Distributed disk storage database based on Raft and Redis protocol.
- https://np.reddit.com/r/programming/comments/p7a56u/icefiredbdistributed_disk_storage_database_based/h9i9j44/
- https://np.reddit.com/r/coding/comments/p79ywb/icefiredbdistributed_disk_storage_database_based/h9i8p6q/
bbolt
-
Help to learn multithreading in Go
For learning goroutines and channels, I usually recommend writing a program that reads from files and writes the data in a dummy database with something like https://github.com/etcd-io/bbolt. It's relatively simple and you're more likely to run into common manifestations of concurrency issues running disk operations.
-
[Noob] Question about Channels
If you would like to explore usage of channels, I highly recommend writing a program that reads from files and writes the data in a dummy database with something like https://github.com/etcd-io/bbolt.
-
A tiny NoSQL database
No transactions, no consistency guarantees, no benchmarks, global locks in the storage implementation, a collection is copied in its entirety on every insertion to it...I realize it's not for the same use case as MySQL or MongoDB, but a more obvious comparison here is e.g. https://github.com/etcd-io/bbolt. So why should someone use this over bbolt?
-
A pure Go embedded SQL database
use go-sqlite3 to work with sqlite3 is one choice.
https://github.com/etcd-io/bbolt is another pure go option.
cznic seems like an alternative to bbolt. nice to have some options.
-
Roblox October Outage Postmortem
This is the PR for the freelist improvement from that alibaba article: https://github.com/etcd-io/bbolt/pull/141
-
How should I name my package repository, when there are multiple implementations in other languages in my github account?
There is also an option to have a custom domain like go.etcd.io/bbolt
-
My open source notification Android app and server can now be fully self-hosted
Remove sqlite or replace with bbolt
-
Best way to store logs?
I would used some embedded kv store like go-leveldb or bolt. Key is BigEnding timestamp + optional tail to allow duplicate timestamps.
-
Introducing Weaviate, a fast modular vector search engine with out of the box support for state-of-the-art ML models written in Go
We initially went for using bolt (and later bbolt) which is the same store that powers etcd. It uses a B+tree approach. It worked great, but we're not happy with the write performance. We're currently in the process of switching to a custom LSM-tree-based approach, which is what you typically find in DBs with great write performance (e.g. Cassandra).
-
Scaling Kubernetes with Assurance at Pinterest
Debuggability: We also built etcd data storage analysis tool using boltdb library and flamegraph to visualize data storage breakdown. Page cache used by kube-apiserver is counted towards a cgroup’s memory limit, and anonymous memory usage can steal page cache usage for the same cgroup. (force cgroup to reclaim as many pages reclaimed as possible if memory usage is approaching limit.)
What are some alternatives?
badger - Fast key-value DB in Go.
bolt
Tile38 - Real-time Geospatial and Geofencing
buntdb - BuntDB is an embeddable, in-memory key/value database for Go with custom indexing and geospatial support
Bitcask - 🔑 A high performance Key/Value store written in Go with a predictable read/write performance and high throughput. Uses a Bitcask on-disk layout (LSM+WAL) similar to Riak.
tiedot - A rudimentary implementation of a basic document (NoSQL) database in Go
prometheus - The Prometheus monitoring system and time series database.
BigCache - Efficient cache for gigabytes of data written in Go.
immudb - immudb - immutable database based on zero trust, SQL and Key-Value, tamperproof, data change history