From 0beb7112e426c992fea7f52ee6d8a40255ec92ce Mon Sep 17 00:00:00 2001 From: Pavel Tiunov Date: Thu, 5 Sep 2019 19:24:34 -0700 Subject: [PATCH] docs: CUBEJS_CACHE_AND_QUEUE_DRIVER --- docs/Cube.js-Backend/Deployment.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/Cube.js-Backend/Deployment.md b/docs/Cube.js-Backend/Deployment.md index bf9a4507e0fa2..85e6fa157c3ba 100644 --- a/docs/Cube.js-Backend/Deployment.md +++ b/docs/Cube.js-Backend/Deployment.md @@ -10,6 +10,9 @@ Also, Cube.js requires [Redis](https://redis.io/), in-memory data structure stor and queue. Set `REDIS_URL` environment variable to provide Cube.js with Redis connection. Make sure, your Redis allows at least 15 concurrent connections. Set `REDIS_TLS` env variable to `true` if you want to enable secure connection. +If you want to run Cube.js in production without redis you can use `CUBEJS_CACHE_AND_QUEUE_DRIVER=memory` env setting. + +> *NOTE:* Serverless and clustered deployments can't be run without Redis as it's used to manage querying queue. Below you can find guides for popular deployment environments: