DocsRedis

Managed Redis

Add a high-performance Redis cache or message broker to your application with one click.

1. Use Cases

Abasthan's managed Redis is perfect for:

  • Session storage
  • Database caching
  • Real-time pub/sub
  • Rate limiting

2. Plans

Choose from tiered memory plans starting from 100MB up to 8GB, depending on your application's data requirements.

3. Connection

We provide a standard Redis URL (redis://...) that includes the necessary authentication credentials. Like our other databases, Redis is only accessible within your private Abasthan network.

# Example connection in Python
import redis
import os

r = redis.from_url(os.environ.get('REDIS_URL'))
r.set('key', 'value')
print(r.get('key'))