Upstash's redis

Is there a way to use upstash’s redis in October CMS ?

Yes, you can use Upstash Redis with October CMS since it’s built on Laravel, which has native Redis support. Install the Redis PHP extension or use the predis/predis package.

composer require predis/predis

Configure your .env file with Upstash credentials:

REDIS_CLIENT=predis
REDIS_HOST=your-upstash-endpoint.upstash.io
REDIS_PASSWORD=your-upstash-token
REDIS_PORT=6379
REDIS_SCHEME=tls