From dec5d270de3b5f3d60c32d8d56ed2f8f387f3d87 Mon Sep 17 00:00:00 2001 From: Martin Date: Thu, 24 Oct 2024 14:34:47 +0200 Subject: [PATCH] Update services/collaboration/README.md Co-authored-by: Michael Barz --- services/collaboration/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/collaboration/README.md b/services/collaboration/README.md index 407d6ebfae..fd4e3e0daa 100644 --- a/services/collaboration/README.md +++ b/services/collaboration/README.md @@ -49,9 +49,9 @@ The application can be customized further by changing the `COLLABORATION_APP_*` ## Storing The `collaboration` service persists information via the configured store in `COLLABORATION_STORE`. Possible stores are: - - `memory`: Basic in-memory store and the default. + - `memory`: Basic in-memory store. Will not survive a restart. This is not recommended for this service. - `redis-sentinel`: Stores data in a configured Redis Sentinel cluster. - - `nats-js-kv`: Stores data using key-value-store feature of [nats jetstream](https://docs.nats.io/nats-concepts/jetstream/key-value-store) + - `nats-js-kv`: Stores data using key-value-store feature of [nats jetstream](https://docs.nats.io/nats-concepts/jetstream/key-value-store). This is the default value. - `noop`: Stores nothing. Useful for testing. Not recommended in production environments. Other store types may work but are not supported currently.