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
//RabbitMQ uses a Bloom filter for server side filtering.
121
+
//A Bloom filter is very efficient in terms of storage and speed, but it is probabilistic: it can return false positives.
122
+
//Because of this, the broker can send messages it believes match the expected filter values whereas they do not. That's why some client-side filtering logic is necessary.
123
+
//For this reason some messages may not be correctly filtered, but we expect the number of them to be very low.
124
+
//For more information: https://www.rabbitmq.com/blog/2023/10/16/stream-filtering
0 commit comments