golang-kv
Bundle embedded DB (badger & boltdb & leveldb & pebble & nutsdb) wrapper with fixed & simple api of pure Golang (by ucwong)
clover
A lightweight document-oriented NoSQL database written in pure Golang. (by ostafen)
golang-kv | clover | |
---|---|---|
1 | 19 | |
8 | 678 | |
- | - | |
8.5 | 4.2 | |
about 5 hours ago | 22 days ago | |
Go | Go | |
GNU General Public License v3.0 only | MIT License |
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.
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.
golang-kv
Posts with mentions or reviews of golang-kv.
We have used some of these posts to build our list of alternatives
and similar projects.
-
Cortex Update (#72)
Machine-Learning(ML), CortexVirtual Machine(CVM) & Model RepresentationTool(MRT) R&D 1. Use the AdaRound method on the Image Classification task and integrate it into the MRT; 2. Refactor the operation and usage of MRT, adopt the argparse library, and support the specification of environment variables and command line parameters; 3. ML network needs to be quantified, and Pytorch network quantization operation is supported at the same time, the model input range is changed from 0–1 to 0–255 to retrain; Cortex ZkRollup 1. Add JS API (provider, signer and wallet at the L2 layer) to interact with ZkNode, and JsonRpc to interact with ZkServer; 2. Modularize JS functions, write the necessary SDK, prepare for the subsequent front-end development, and complete part of the code test; 3. ZKNode builds the Server module, uses Flask tool to design the Web backend, and connects with the frontend JsonRpc interface; 4. ZkNode separate module function, realize some functions of log, command line and transaction pool; 5. ZkNode adds Layer One signature method and supports OnChainDataHash auxiliary storage; 6. The ZkRollup contract is improved, some problems are fixed, and the contract logic function is tested; Cortex Full Nodes 1. Update the DNS discovery API and repair the block header chain synchronously; 2. Optimize RPC subscription thread closing synchronization logic; 3. Optimize the startup detection and allocation logic of full node and CVM virtual memory; 4. Model Cache repeated loading optimization, try SSD Cache to replace Memory Cache; 5. The separated storage engine is a switchable module, and it is expected to support more storage types. Refer to the link: https://github.com/ucwong/golang-kv/; Miscellaneous 1.Update address data statistics on the Cortex chain;
clover
Posts with mentions or reviews of clover.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-05-21.
-
Creating a TODO app in Fyne an Go
If you want to see a more complex example with some syntax sugar and sexy db persistence layer using clover you can look at this gtodos.
- What do you use for fast read/write local db stoage?
-
Open Source Databases in Go
clover - A lightweight document-oriented NoSQL database written in pure Golang.
-
Looking for projects to contribute
Give a look to this project: https://github.com/ostafen/clover
-
arcticDB: embedded columnar database written in Go
Also, I'm working on a small embedded No SQL library. I leave it here, just in case it could be of any help: https://github.com/ostafen/clover
-
Mocking database or use a test database
Hi, recently I wrote a small NoSQL embedded database in Go. It is meant to run as a library, for those usa cases where you don't want to run a real database server. I leave here the link: https://github.com/ostafen/clover Maybe, it can be of help
- What do you use Go for?
-
Any open source project I could join?
You can join this project https://github.com/ostafen/clover It is a tiny NoSQL embedded database designed for being simple and easily maintainable
- Looking for open source project to learn from
- "Each insert, update or delete operation rewrites from scratch the file corresponding to a given collection." .. "If you are really concerned about performance, you could write your own implementation."