Key Value Database
  • Go 93.4%
  • Makefile 6.1%
  • Dockerfile 0.5%
Find a file
ProgramingIsTheFuture 1f03097c3f Simple Key Value database
2021-11-13 22:45:48 +00:00
cmd Simple Key Value database 2021-11-13 22:45:48 +00:00
data Simple Key Value database 2021-11-13 22:45:48 +00:00
external/gRPC Simple Key Value database 2021-11-13 22:45:48 +00:00
internal Simple Key Value database 2021-11-13 22:45:48 +00:00
proto Simple Key Value database 2021-11-13 22:45:48 +00:00
test_files Simple Key Value database 2021-11-13 22:45:48 +00:00
.gitignore Simple Key Value database 2021-11-13 22:45:48 +00:00
Dockerfile Simple Key Value database 2021-11-13 22:45:48 +00:00
go.mod Simple Key Value database 2021-11-13 22:45:48 +00:00
go.sum Simple Key Value database 2021-11-13 22:45:48 +00:00
makefile Simple Key Value database 2021-11-13 22:45:48 +00:00
README.md Simple Key Value database 2021-11-13 22:45:48 +00:00

KValDB

Simple key value database that use json files to store the database, the key and the respective value.

This simple database have two gRPC methods: - Get - Set

The GET method will receive the database name and the key. With this, the server will return the respective key and value.

The SET method will receive the database name, with this it will create or open the file .json and store the key and value you insert.