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

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

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