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
Describe the bug
I'm trying to adapt some of the example code in the docs to fit my needs. Essentially, I want to live-stream text line by line into a code block. From what I've understood, I should be able to append to a state variable (a list) in a background handler, and use yield each time a new line is added to send the state changes incrementally to the frontend.
When I try this approach, each time state is updated, the full state is sent to the frontend, including the previously sent lines (as part of the 'delta' section in the JSON). From what I understood, only the newly added (or removed) lines should be sent (i.e. incremental updates).
In my full scale application, I would potentially be appending to a list of thousands or more lines. It would pretty quickly get out of hand if the whole state had to be sent each time. Am I missing something obvious here? Is there a better way of achieving this?
we have a backlog item to implement https://datatracker.ietf.org/doc/html/rfc6902, but the behavior you are currently seeing is expected. reflex does not send the full state, only the vars that have changed... but if the var that has changed is already very large, then yes, it does send the complete value over.
Describe the bug
I'm trying to adapt some of the example code in the docs to fit my needs. Essentially, I want to live-stream text line by line into a code block. From what I've understood, I should be able to append to a state variable (a
list
) in a background handler, and useyield
each time a new line is added to send the state changes incrementally to the frontend.When I try this approach, each time state is updated, the full state is sent to the frontend, including the previously sent lines (as part of the 'delta' section in the JSON). From what I understood, only the newly added (or removed) lines should be sent (i.e. incremental updates).
In my full scale application, I would potentially be appending to a list of thousands or more lines. It would pretty quickly get out of hand if the whole state had to be sent each time. Am I missing something obvious here? Is there a better way of achieving this?
To Reproduce
Expected behavior
Only the changes in state are sent, not the whole thing.
Specifics (please complete the following information):
The text was updated successfully, but these errors were encountered: