An open API service indexing awesome lists of open source software.

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

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
```