https://github.com/telkomdev/putih
<IN PROGRESS & SUCKS> Redis Command Line Client Writen in CPlusPlus
https://github.com/telkomdev/putih
cli cli-app cplusplus cpp redis redis-client
Last synced: 4 months ago
JSON representation
<IN PROGRESS & SUCKS> Redis Command Line Client Writen in CPlusPlus
- Host: GitHub
- URL: https://github.com/telkomdev/putih
- Owner: telkomdev
- Created: 2019-10-15T17:25:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-11T15:27:07.000Z (over 5 years ago)
- Last Synced: 2025-01-16T20:19:10.933Z (5 months ago)
- Topics: cli, cli-app, cplusplus, cpp, redis, redis-client
- Language: C++
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Putih
Redis Command Line Client Writen in `C++`
### Requirements
- gcc https://gcc.gnu.org/install/binaries.html
- cmake https://cmake.org/download/## TODO
- validate `redis command` against user input
- interactive command input
- handle `command line flag`, for example `-h or --help`### Building
Change directory to root project
```shell
$ cd putih
```Create `build` folder
```shell
$ mkdir build
```Goto `build` folder
```shell
$ cd build
```Run `cmake`
```shell
$ cmake ..
```Run `make`
```shell
$ make
```### Usage
After building process above, we can use produced binary in `build` folder to connect with `redis server`
```shell
$ ./putih localhost 6379
```