From 30c1626b52072f6903c3ac743f8674d8d6e6e3ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Mon, 28 Oct 2024 10:38:12 +0100 Subject: [PATCH] docs(worker): add section about managed redis #82 --- apps/docs/src/pages/docs/self-hosting/index.mdx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/apps/docs/src/pages/docs/self-hosting/index.mdx b/apps/docs/src/pages/docs/self-hosting/index.mdx index a994d6ad..fb7a2325 100644 --- a/apps/docs/src/pages/docs/self-hosting/index.mdx +++ b/apps/docs/src/pages/docs/self-hosting/index.mdx @@ -126,4 +126,12 @@ const op = new OpenPanel({ trackOutgoingLinks: true, trackAttributes: true, }); -``` \ No newline at end of file +``` + +### Managed Redis + +If you use a managed Redis service, you may need to set the `notify-keyspace-events` manually. + +Without this setting we wont be able to listen for expired keys which we use for caluclating currently active vistors. + +> You will see a warning in the logs if this needs to be set manually. \ No newline at end of file