https://github.com/gomjellie/kvs
https://github.com/gomjellie/kvs
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gomjellie/kvs
- Owner: gomjellie
- Created: 2019-11-29T14:01:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-05T18:51:08.000Z (over 5 years ago)
- Last Synced: 2025-01-23T11:25:51.575Z (4 months ago)
- Language: C++
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kvs
## build
### static library
build
```sh
make static
```run
```sh
./test_static put.txt get.txt result_static.txt
```### dynamic library
build
```sh
make dllexport LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD
```run
```sh
./test_dll put.txt get.txt result_dll.txt
```