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
Hi, thanks for this great project
I want to implement my web socket in Django but other microservices (in other languages like java and golang) can send some messages to a group. How can I do this?
I tried to understand the group_send function but it is very complicated. I know how to communicate with Redis in another language. Can you explain the function of sending a group to me?
The text was updated successfully, but these errors were encountered:
If you use the new pubsub.py implementation, then group_send is much easier to understand. Worth consideration -- it just uses Redis pub/sub so it should be easy to publish messages from whatever language you want, and the groups name (channel names) are easy to derive.
Hi, thanks for this great project
I want to implement my web socket in Django but other microservices (in other languages like java and golang) can send some messages to a group. How can I do this?
I tried to understand the group_send function but it is very complicated. I know how to communicate with Redis in another language. Can you explain the function of sending a group to me?
The text was updated successfully, but these errors were encountered: