reactpy icon indicating copy to clipboard operation
reactpy copied to clipboard

Backpressure Mitigation

Open Archmonger opened this issue 3 years ago • 0 comments

Current Situation

We currently use standard JavaScript websockets for client/server communication. The downside of this is that they have no method of handling backpressure, which will become a realistic issue once we begin serializing file content and other form data.

Reference

  • https://github.com/idom-team/idom/issues/574
  • https://github.com/idom-team/idom/issues/573

Proposed Actions

Handle backpressure elegantly, such as through websocket stream libraries.

This ideally should be invisible from a user's perspective, so we want to automate this through template tags when possible.

Reference

  • https://github.com/idom-team/idom/issues/653

Archmonger avatar Feb 17 '22 01:02 Archmonger