liburkel icon indicating copy to clipboard operation
liburkel copied to clipboard

Authenticated key-value store (i.e. an urkel tree)

Results 8 liburkel issues
Sort by recently updated
recently updated
newest added

Additional checks are necessary to make sure it is fully compatible with urkel behavior. So this will be draft until I have run integration with urkel (in https://github.com/nodech/liburkel-test) Adds compaction...

Similar to `urkel.stat` from `urkel`, it returns: - `files` - total number of files, not including meta/lock. - `size` - total size of these files, not including meta/lock. Also defines...

Values are currently capped at 1024 bytes. There are two reasons for this: 1. We try to save as much space as possible on disk by compressing pointers and packing...

The main benefit of the urkel tree is history preservation. However, there are some cases where history becomes stale. In the case of HNS, this would include name data that...

This would allow us to utilize memory-mapped writes and get rid of our write buffer. This is a breaking change, but may be worth it in terms of simplicity and...

Apparently, I got **un**lucky and I was getting type HASH and NULL most of the time so took some time to notice that this was an issue. Fortunately in node...

In different environments where it's necessary to not use a lot of memory, I think it should be possible to disable `mmap` altogether or have it behind flag that is...