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
Use WebSockets to stream data from the server to the user while the user is actively looking at a page/table/etc. Since most of our communication is request/response, the client always sees fresh data on a new load.
If the underlying data is changed while the client is currently using it (for example, purchase details), the client may be acting on old information.
By allowing the server to push new data only when said data is changed, it can ensure a sync between the client and database.
This is a reach goal and has a practical value of very little. Not enough people use Boiler for this to be a problem, and basically 0 make changes to data while it is being looked at by a different client.
The text was updated successfully, but these errors were encountered:
Use WebSockets to stream data from the server to the user while the user is actively looking at a page/table/etc. Since most of our communication is request/response, the client always sees fresh data on a new load.
If the underlying data is changed while the client is currently using it (for example, purchase details), the client may be acting on old information.
By allowing the server to push new data only when said data is changed, it can ensure a sync between the client and database.
This is a reach goal and has a practical value of very little. Not enough people use Boiler for this to be a problem, and basically 0 make changes to data while it is being looked at by a different client.
The text was updated successfully, but these errors were encountered: