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
Since the current frontend is PHP-based and bad at real-time features - we need to use a different technology to make the frontend more responsive.
Poxa is a standalone websocket/pusher service that can handle sending and syncing events from the server side (PHP) to the client side (JS). It is API-compatible with pusher.com.
Data flow
Webserver proxies requests to VHOST/ws to Poxa
JS connects to websocket endpoint.
When events occur, the PHP triggers Poxa over an http API.
Poxa broadcasts the events to any open channels to alert users that are connected.
Started looking into poxa. pusher-js doesn't seem to allow you to configure a path for the connection only a hostname. I was able to get Poxa and php talking and got pusher-js working but only if using a different port than the main application.
Since the current frontend is PHP-based and bad at real-time features - we need to use a different technology to make the frontend more responsive.
Poxa is a standalone websocket/pusher service that can handle sending and syncing events from the server side (PHP) to the client side (JS). It is API-compatible with pusher.com.
Data flow
VHOST/ws
to PoxaThe text was updated successfully, but these errors were encountered: