From 7158a504fa19e750c8a40e353733012fa34bd569 Mon Sep 17 00:00:00 2001 From: Jon Chambers Date: Fri, 8 Nov 2024 15:55:02 -0500 Subject: [PATCH] Remove an outdated doc comment reference to keyspace notifications --- .../whispersystems/textsecuregcm/storage/MessagesCache.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/service/src/main/java/org/whispersystems/textsecuregcm/storage/MessagesCache.java b/service/src/main/java/org/whispersystems/textsecuregcm/storage/MessagesCache.java index 546484c9f..7db90e492 100644 --- a/service/src/main/java/org/whispersystems/textsecuregcm/storage/MessagesCache.java +++ b/service/src/main/java/org/whispersystems/textsecuregcm/storage/MessagesCache.java @@ -54,8 +54,7 @@ import reactor.core.scheduler.Schedulers; /** * Manages short-term storage of messages in Redis. Messages are frequently delivered to their destination and deleted * shortly after they reach the server, and this cache acts as a low-latency holding area for new messages, reducing - * load on higher-latency, longer-term storage systems. Redis in particular provides keyspace notifications, which act - * as a form of pub-sub notifications to alert listeners when new messages arrive. + * load on higher-latency, longer-term storage systems. *

* The following structures are used: *