A lightweight caching service to improve performance of legacy applications.
curl -X PUT http://localhost:8081/cache/user-profile-123 \
-H "Content-Type: application/json" \
-d '{
"name": "John Doe",
"email": "john@example.com",
"preferences": {
"theme": "dark",
"notifications": true
}
}' \
-H "X-Cache-TTL: 3600"
curl http://localhost:8081/cache/user-profile-123
curl -X DELETE http://localhost:8081/cache/user-profile-123
Vibe Hush includes a beautiful terminal UI for monitoring cache performance and managing entries.
The Terminal UI provides an interactive way to monitor your cache performance and manage entries.
Choose your preferred installation method
go install github.com/gabrielalmir/hush/cmd/vibe-hush@latest
This will install the latest version of the CLI tool. Make sure your Go bin directory is in your PATH.
After installation, you can run:
vibe-hush --help