This is an in-memory key-value cache service implemented in Node.js with Redis.
- Supports
PUTandGEToperations. - Limits key and value length to 256 characters.
- Uses Redis for in-memory caching.
- Packaged as a Docker container.
Ensure you have Docker and Node.js installed.
Build and run the Docker container:
docker build -t key-value-cache .
docker run -p 7171:7171 key-value-cache
# Key-Value-Cache