https://github.com/anotherfoxguy/stupid-kv
The simplest key-value store with HTTP API
https://github.com/anotherfoxguy/stupid-kv
Last synced: 3 months ago
JSON representation
The simplest key-value store with HTTP API
- Host: GitHub
- URL: https://github.com/anotherfoxguy/stupid-kv
- Owner: AnotherFoxGuy
- Created: 2022-04-05T16:56:27.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-09T12:04:50.000Z (about 3 years ago)
- Last Synced: 2025-01-13T02:45:32.605Z (5 months ago)
- Language: C++
- Size: 53.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
stupid kv
-------------------The simplest key-value store with HTTP API
## Build Instructions
Just run `xmake`
## HTTP API
PUT `http://127.0.0.1:7020/set/[key name]` with the content as raw body to add data
GET `http://127.0.0.1:7020/get/[key name]` to get the data back