Skip to content
/ gauche Public

Gauche is a simple HTTP in-memory key-value store, written as a learning exercise in Go.

License

Notifications You must be signed in to change notification settings

tjvc/gauche

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gauche

go test Go Report Card

gauche

1 b : crudely made or done

Gauche ("Go cache") is a simple HTTP in-memory key-value store.

Roadmap: https://www.pivotaltracker.com/n/projects/2487327

Usage

Build from source

go mod download
go build
./gauche

Docker

docker build -t gauche .
docker run -p 8080:8080 gauche

PUT key

$ curl -i -X PUT -d 'value' https://localhost:8080/key
HTTP/1.1 200 OK
Content-Type: text/plain
Date: Sun, 14 Feb 2021 10:19:36 GMT
Content-Length: 5

value

GET key

$ curl -i https://localhost:8080/key
HTTP/1.1 200 OK
Content-Type: text/plain
Date: Sun, 14 Feb 2021 10:20:31 GMT
Content-Length: 5

value

DELETE key

$ curl -i -X DELETE https://localhost:8080/key
HTTP/1.1 204 No Content
Date: Sun, 14 Feb 2021 10:22:22 GMT

GET keys

$ curl -i https://localhost:8080
HTTP/1.1 200 OK
Content-Type: text/plain
Date: Sun, 14 Feb 2021 10:23:11 GMT
Content-Length: 24

key1
key2
key3

About

Gauche is a simple HTTP in-memory key-value store, written as a learning exercise in Go.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published