https://github.com/nunogois/kiwi
🥝 Kiwi is an extremely simple and performant key-value store written in Go.
https://github.com/nunogois/kiwi
gin go golang hacktoberfest key-value-store rest-api
Last synced: about 2 months ago
JSON representation
🥝 Kiwi is an extremely simple and performant key-value store written in Go.
- Host: GitHub
- URL: https://github.com/nunogois/kiwi
- Owner: nunogois
- Created: 2022-07-25T18:26:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-25T18:26:18.000Z (almost 4 years ago)
- Last Synced: 2025-03-21T11:34:28.302Z (over 1 year ago)
- Topics: gin, go, golang, hacktoberfest, key-value-store, rest-api
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🥝 Kiwi
Kiwi is an extremely simple and performant key-value store written in Go.
## Routes
Kiwi follows a somewhat standard REST API pattern.
- **GET** `/store/my/custom/id`
- Returns data in the `my/custom/id` key
- **POST** `/store/my/custom/id`
- Stores (replacing) data in the `my/custom/id` key
- **PATCH** `/store/my/custom/id`
- Patches data in the `my/custom/id` key
- **DELETE** `/store/my/custom/id`
- Deletes data in the `my/custom/id` key