We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Currently the recommended way of broadcasting an event to multiple uids is something like this:
(doseq [uid all-uids] (chsk-send! uid [:my-app/ev {:payload some-data}]))
An inefficiency in this case is that the event message will be repeatedly serialized - once for each uid.
Instead, we could easily add a simple util that:
This would be a substitute for [#276].
Currently the recommended way of broadcasting an event to multiple uids is something like this:
An inefficiency in this case is that the event message will be repeatedly serialized - once for each uid.
Instead, we could easily add a simple util that:
This would be a substitute for [#276].