https://github.com/jonas-be/simple-http-key-value-store
This application is a key value store, controlled over http requests
https://github.com/jonas-be/simple-http-key-value-store
go golang http key-value key-value-store
Last synced: 4 months ago
JSON representation
This application is a key value store, controlled over http requests
- Host: GitHub
- URL: https://github.com/jonas-be/simple-http-key-value-store
- Owner: jonas-be
- License: mit
- Created: 2023-03-02T08:44:01.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-13T15:50:06.000Z (about 3 years ago)
- Last Synced: 2024-12-29T04:53:28.962Z (over 1 year ago)
- Topics: go, golang, http, key-value, key-value-store
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple Http key value store
This application is a key value store, controlled over http requests.
> **Note**
> This project was mainly for learning Go, especially the `net/http` and `net/http/httptest` libraries.
## Request
```http://localhost:8080/data?key=a&value=YourValue```
### GET
Returns the value of your given key
### PUT
Create or update the entry for your given key, with the given value
### DELETE
Delete the entry for your given key