6 ms·
Why take a step back in technology?
by kennethkl 12y ago
Why take a step back in technology?
- Gracana 12y agoI think you're misunderstanding what they mean by "static." The served pages are static html and javascript, and the javascript loads other resources from the server. The "static" part just means there is no page rendering occurring on the server.
- otterley 12y agoOut of all the processes that must occur to render a dynamic server-side response (database queries, computations, etc.), assembling HTML ("page rendering") is probably one of the least expensive. This seems like a premature optimization to me.
- reverius42 12y agoIt's not just a performance optimization. It's a cleaner architecture that's easier to test.