dmarro89 / dare-db

Dare-DB is a lightweight in-memory database written in Go, featuring Redis-inspired hashtables and HTTP/HTTPS endpoints for seamless data storage and retrieval, with Docker support for easy deployment
MIT License
17 stars 1 forks source link

Implements a TCP communication channel #41

Open dmarro89 opened 1 week ago

dmarro89 commented 1 week ago

Currently the only way to use the DB is sending HTTP/s requests. There should by at least another option -> TCP has been chosen in order to create a direct channel between a client and the server. The list of commands is needed with the implementation of this commands as well. Should be implemented also the TLS part about the communication.

dmarro89 commented 1 week ago

Here another important discussion about it -> https://github.com/dmarro89/dare-db/discussions/16#discussion-6755571

To follow for the commands to implement.