Skip to content

Glebanister/supermap

Repository files navigation

Supermap

CMake

Key-value keys implementation.

Benchmarks

This bechmark was executed on dataset with 50M key-value pairs, 3K operations, where 50% of them are 'add' and others are 'get' operations.

Add operations

add

Get operations

get

Installation

First make sure git and cmake are installed, C++17 standard is supported on your machine. Then execute following commands.

$ git clone --recursive https://github.com/Glebanister/supermap
$ mkdir build
$ cd build
$ cmake ...

Testing

All functions are unit and stress tested. Optionally, you can run tests locally by running

$ ./build/supermap-test

Usage

$ ./build/supermap-cli
supermap> help
'get' - Get value of key from keys
'remove' - Remove key from keys
'add' - Add key to keys
'contains' - Check if key in keys
'stop' - Stop interface
'help' - Get help
supermap> 

Documentation

Available at glebanister.github.io/supermap

The repository has a Doxyfile from which you can generate documentation by yourself if you have doxygen

doxygen Doxyfile