NimbusDB is a key value store. The aim of this project is to understand the core behaviour of Redis and its design. It provides various set of commands similar to Redis along with various data structures and more.
- Key-Value Store: Supports commands like
SET
,GET
,DEL
,INCR
,INCRBY
etc. - Data type support String, Numbers, Set, List.
Set the key in the store.
Syntax: SET key value
nimbusdb > SET name john
OK
Get the key from the store.
Syntax: GET key
nimbusdb > SET name john
OK
nimbusdb > GET name
john
Delete key from the store.
Syntax: DEL key
nimbusdb > SET name john
OK
nimbusdb > GET name
john
nimbusdb > DEL name
john Deleted
Note
It works with smallcase set
, get
, del
commands also.
Nimbus db support few important datatypes.
Nimbus supports the string data type, and you can use the SET
and GET
commands mentioned above to work with strings.
Nimbus supports the number data type and also offers a separate set of commands designed to work with it. Below is a detailed explanation of these commands.
ADD ALL COMMANDS WITH SYNTAX HERE...
List also offers it separate set of commands designed to work with it. Below are the detaled explanation of commands.
ADD ALL COMMANDS WITH SYNTAX HERE...
Set also offers it separate set of commands designed to work with it. Below are the detaled explanation of commands.
ADD ALL COMMANDS WITH SYNTAX HERE...
WORK IN PROGRESS...