@bnewbold It's not n^2 because it's sending messages to *followers*. It's O(n), because inherently sending messages directly to interested parties becomes O(n).
The thing that makes it n^2 is the need to receive all the messages that are not relevant to you, every time.