From 37773e0ca122cb9531bbe479531573d1600b5ebf Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Sun, 13 Aug 2023 23:46:26 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20chore(.env.example):=20add=20doc?= =?UTF-8?q?umentation=20for=20LANGFLOW=5FCACHE=5FTYPE=20environment=20vari?= =?UTF-8?q?able=20and=20its=20possible=20values?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.env.example b/.env.example index 6c6d2f667..44fcae3da 100644 --- a/.env.example +++ b/.env.example @@ -45,3 +45,14 @@ LANGFLOW_OPEN_BROWSER= # Values: true, false # Example: LANGFLOW_REMOVE_API_KEYS=false LANGFLOW_REMOVE_API_KEYS= + +# Whether to use RedisCache or InMemoryCache +# Values: memory, redis +# Example: LANGFLOW_CACHE_TYPE=memory +# If you want to use redis then the following environment variables must be set: +# LANGFLOW_REDIS_HOST (default: localhost) +# LANGFLOW_REDIS_PORT (default: 6379) +# LANGFLOW_REDIS_DB (default: 0) +# LANGFLOW_REDIS_CACHE_EXPIRE (default: 3600) +LANGFLOW_CACHE_TYPE= +