Redis
por pcloudhosting
Version 8.0.5 + Free with Support on Ubuntu 26.04
Redis is a high-performance, open-source, in-memory data store used as a database, cache, message broker, and queue. It helps developers build fast and scalable applications by storing data in memory for low-latency access.
This solution supports common Redis workflows including key-value storage, caching, session management, pub/sub messaging, real-time analytics, counters, queues, and high-speed application data processing. It is ideal for web applications, APIs, microservices, DevOps workloads, and cloud-native application environments.
Redis Version: Redis 8.6.3 latest stable version. You can verify the installed version using the command below:
redis-server --version redis-cli --version
Features of Redis:
- High-performance in-memory key-value database.
- Supports caching, session storage, queues, and message broker use cases.
- Provides data structures such as strings, hashes, lists, sets, sorted sets, streams, and bitmaps.
- Supports pub/sub messaging for real-time communication.
- Low-latency data access for scalable applications.
- Can be managed using Redis CLI commands.
- Runs as a systemd service on Ubuntu for easy start, stop, and restart operations.
Usage instructions for Redis
$ sudo su
$ systemctl status redis-server --no-pager
$ redis-cli ping
$ redis-cli SET product "Redis on Ubuntu 26.04 Azure"
$ redis-cli GET product
Redis service can be managed using the following commands:
Start Redis: systemctl start redis-server Stop Redis: systemctl stop redis-server Restart Redis: systemctl restart redis-server Enable Redis on boot: systemctl enable redis-server Check Redis status: systemctl status redis-server --no-pager
Access Redis CLI: redis-cli Test Redis: redis-cli ping Expected output: PONG
Default Port: Redis runs on port 6379.
Local access: redis-cli -h 127.0.0.1 -p 6379 Remote access format: redis-cli -h your-server-ip -p 6379
Disclaimer: Redis is provided “as is” under applicable open-source licenses. Users are responsible for securing Redis with strong authentication, firewall rules, private networking, and proper configuration before using it in production. Redis should not be exposed publicly without access control and network restrictions.