minima icon indicating copy to clipboard operation
minima copied to clipboard

MinimaDB: A persistent & embeddable KV store written in Nim.

Results 7 minima issues
Sort by recently updated
recently updated
newest added

This pull request allows a query to get all keys in a range, it currently does not work with split trees.

Think about using a pagecache system instead of the current write-ahead log.

## Problem Right now if I want to get multiple keys from the tree, I need to call the search function multiple times. If I want to do the set...

Ability to remove keys from the database

## Problem We currently use the B tree, this is not the most efficient possible solution. ## Acceptance Criteria Research new tree structures, such as B+, BW and internals of...

## Use Case In order to add extra indexes to keys, they should be taggable. This looks something like this: ```console SET "foo" "bar" TAG "baz" "foo" ``` This would...