KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
FalconDB
★ 10
Open GitHub ↗
A simple in-memory key-value database.
Download README (.md)
Explore Similar Repositories
action-get-semver
:
Outputs the current/next major, minor, and patch version based on the given semver version.
mail2rm
:
Mail PDF documents to you reMarkable notebook
video-processing-with-symbl
:
Video processing app with NextJS and Symbl AI.
proj19-process-memory-tracker
:
实时统计进程内存使用及检测内存泄漏。
gw-conditions
:
Similar to gage-conditions-gif but for groundwater!
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
FalconDB
?
Download (.md)
# FalconDB ``` ______ _ _____ ____ | ____| | | | __ \| _ \ | |__ __ _| | ___ ___ _ __ | | | | |_) | | __/ _` | |/ __/ _ \| '_ \| | | | _ < | | | (_| | | (_| (_) | | | | |__| | |_) | |_| \__,_|_|\___\___/|_| |_|_____/|____/ ``` FalconDB is an in-memory key-value database written in Golang. It supports [redis](https://redis.io/) protocol for these listed commands: - GET - SET - DEL Example: Please provide your desired port as an input argument. ``` bash ./falconDB 8585 redis-cli -p 8585 SET foo bar OK redis-cli -p 8585 GET foo bar redis-cli -p 8585 DEL foo OK ``` You can also use [telnet](https://en.wikipedia.org/wiki/Telnet) to connect to FalconDB: ```bash telnet localhost 8585 *3 $3 SET $3 foo $3 bar ``` - `*3` indicates there are 3 parts to this command (SET, key, and value). - `$3` indicates the next line has 3 characters (the word "SET"). - `SET` is the command. - `$3` again indicates the key is 3 characters long ("foo"). - `foo` is the actual key. - `$3` indicates the value is 3 characters long ("bar"). - `bar` is the actual value.