An open API service indexing awesome lists of open source software.

https://github.com/forhadulislam/modb

A Key-Value Database built with Golang
https://github.com/forhadulislam/modb

cachedb golang memory-database modb

Last synced: 11 months ago
JSON representation

A Key-Value Database built with Golang

Awesome Lists containing this project

README

          


MoDB

In memory database built with Go

## Methods
SET
TBA

GET
TBA

DELETE
TBA

EXPIRE
TBA

Close
TBA

## REST API
Url: http://127.0.0.1:34443/db

SET
HTTP Method: POST
Payload: { "Method": "SET", "Key": "myKey", "Value": "myValue"}

GET
HTTP Method: POST
Payload: { "Method": "GET", "Key": "myKey"}

DELETE
HTTP Method: POST
Payload: { "Method": "DELETE", "Key": "myKey"}

## Performance

moDB was tested in a single machine. And the performance was executed to
insert a certain amount of data and deleting those using the builtin methods.
Results are displayed below:


MoDB