-
Hi. Is there any reason I can't naively render everything on the server and stream it to the client assuming:
A "vaadin/Apache Wicket" lite sort of thing? I'm thinking of an architecture where the server holds the state (minus, scrolling positions and also, possibly, input state and form validation state) and the client is the thinest of thinest client/views. Opening a new in-app dialog sends a message to the server which redraws and sends back the entire view with the dialog box opened. Is this madness? Obviously "is it fast enough" is always and only answered correctly by "dunno - measure", but has anyone tried this? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This should be doable, although it sounds really similar the webworker implementation I tried in the past and couldn't get right. I have not tried doing a bidirectional server render, only one way server->client. |
Beta Was this translation helpful? Give feedback.
This should be doable, although it sounds really similar the webworker implementation I tried in the past and couldn't get right. I have not tried doing a bidirectional server render, only one way server->client.