- the dynamic piece is exactly what allows you to ship quickly
- most slowness is due to waiting for IO (database or external API calls) and can be easily solved by handling expensive work in the background
- concurrency is solved by having more web workers, and web workers are cheap (database is the bottleneck anyway)
- the dynamic piece is exactly what allows you to ship quickly
- most slowness is due to waiting for IO (database or external API calls) and can be easily solved by handling expensive work in the background
- concurrency is solved by having more web workers, and web workers are cheap (database is the bottleneck anyway)