key-value store
Project description
erebor
Erebor is a lightweight key-value store with a Redis-like syntax.
Installation
To install the erebor server:
pip install erebor
Usage
Run the server like so:
$ erebor
You can verify erebor is running by connecting to 127.0.0.1:8044.
$ nc localhost 8044
keys
[]
set foo bar
OK
keys
['foo']
get foo
bar
API
Erebor recognizes the following commands:
set <key> <value> set a key to a value
del <key> remove a key and its value
get <key> retrieve the value of a key
keys [prefix] return a list of keys starting with prefix
Configuration
Erebor listens on 127.0.0.1:8044. You can change this by modifying the port
variable at the top of the file.
$ vim $(which erebor)
You can also change the bind address. However, for security reasons, it is not recommended to bind on 0.0.0.0 and expose the database to the world.
By default, erebor runs in ephemeral mode, where keys are only stored in memory
and not persisted to disk. To run in persistence mode, run with the -p
option.
This will save the database to a local JSON file called keys.db.
Other notes
The erebor API uses vanilla TCP sockets, so you can make API requests using netcat
.
$ echo "set home $(cat index.html)" | nc -q 0 localhost 8044
OK
You can also talk to erebor programmatically using any language that can speak TCP:
import socket
# Setup a socket to the host and port where erebor is running.
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect(("127.0.0.1", 8044))
def erebor(message):
sock.send(message.encode())
return sock.recv(1024).decode().strip()
print(erebor("set foo bar"))
# OK
print(erebor("get foo"))
# bar
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file erebor-2.0.1.tar.gz
.
File metadata
- Download URL: erebor-2.0.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82922dee62c16929da87b1f7e734b355756fe73fb3cda839343ebc7422df4e3c |
|
MD5 | 8ef05442cc5f334c9ce101ebd4e4de06 |
|
BLAKE2b-256 | cd1352475c92801b54b27a802e6e5162610ddadd3bba12417ba8595f1401c2be |
File details
Details for the file erebor-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: erebor-2.0.1-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15d63507b7f82e9ad99f0d84f30ed3075b4959848ac0c7db5330a99434fd418e |
|
MD5 | 21054e7bb43745611091b8d66ff21318 |
|
BLAKE2b-256 | 9f9e32a1acc243cea597409dc3c7e2bcbd9c2c5436d99af7a395bbcc006f8e13 |