Earlier quoted context omitted.
LiveView does not re-render the template on every interaction. LiveView actually sends patches over the wire, which is typically smaller than a hand-written JSON response. The screencast linked above has a good example of this, where clicking the "retweet" button sends a minimal payload, since we know the exact position on the page. LiveView also uses a long-running WebSocket connection and that reduces the amount of…
The patches don't need to be processed by the template engine to render them?
Here's some information: https://www.evanmiller.org/elixir-ram-and-the-template-of-do...