The Problem
are there any plans to support redis support? jsk lacks native support for inspecting or interacting with external stateful services (especially redis)
The Ideal Solution
make shortcut commands for redis-cli support. eg. jsk redis get 'key'
The Current Solution
have to do, jsk sh redis-cli ...
redis might be installed but not the cli tool. aioredis. or native redis.asyncio is the other way around. jsk py bot.redis_client.get(...)
need something live observability. not a static GET SET
jsk sh redis-cli ... is broad, and feels* fragile
jsk redis ... would be scoped. and feels* safer
The Problem
are there any plans to support redis support? jsk lacks native support for inspecting or interacting with external stateful services (especially redis)
The Ideal Solution
make shortcut commands for redis-cli support. eg.
jsk redis get 'key'The Current Solution
have to do,
jsk sh redis-cli ...redis might be installed but not the cli tool. aioredis. or native redis.asyncio is the other way around.
jsk py bot.redis_client.get(...)need something live observability. not a static GET SET
jsk sh redis-cli ...is broad, and feels* fragilejsk redis ...would be scoped. and feels* safer