|
|
|
|
|
by stanmancan
857 days ago
|
|
Livewire has to send the full state of the request for the component. Search results is a good example where the state can start to get big. Once it hits the server re-hydrates the models. They are also HTTP requests which have some handshaking. Live View only sends the diffs excuse the state lives in an active process on the server, and it uses web sockets which is much faster than http requests. |
|