A CLI on top of the Aeron Cache REST API.
Built in Rust 🦀 using:
By default, the CLI assumes that your backend cache service is reachable at http://localhost:7070/api/v1. If you need to override the API base URL, use the --api-url flag or the AERON_CACHE_API_URL environment variable.
It exposes the following commands:
create <name>: Create a new cachedelete <name>: Delete a cacheget-cache <name>: Get all items from a cacheclear-cache <name>: Clear all items from a cacheinsert <name> <key> <value>: Insert an item into a cacheget <name> <key>: Get an item from a cacheremove <name> <key>: Remove an item from a cachelist-caches: List all available caches and their item countstats: Get global cache statistics
Use the --help flag anytime for more information.
Example: cargo run -- create mycache
Example: cargo run -- --api-url http://otherhost:7070/api/v1 stats
