-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
# tellydb | ||
A toy database project for educational purposes. | ||
A toy key-value database project for educational purposes. | ||
|
||
## Features | ||
+ Partially implemented [RESP2](https://redis.io/docs/latest/develop/reference/protocol-spec/) from redis. | ||
+ Includes B-Tree for caching. | ||
+ Fully configurable via [.tellyconf](./FILE.md). | ||
+ Includes transaction/command queue system. | ||
|
||
## Usage | ||
Start the server, install a tool that you can connect to redis server like redis-cli. Start to use! | ||
|
||
## Quick Start | ||
To get information about server, use `telly help`. | ||
To get information about available commands, look at [src/commands](./src/commands/) | ||
|
||
## License | ||
Licensed under [BSD-3 Clause Clear License](./LICENSE). |