You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current RedisMessageGroupStore maintains all messages (for a group) under a single key (the group id). This is not particularly efficient when the store is used to back a QueueChannel, especially if messages accumulate in the channel.
Implement a RedisChannelMessageGroupStore that is specialized for this purpose, backed by LIST keys which are LPUSH ed and RPOP ed.
A similar optimization was previously made in JDBC.