Slide 16
Slide 16 text
Add a few headers…
Flush out your scripts, styles, etc.
Call your services, resolve locale, whatever else, then flush again.
!
!
!
1 res.setHeader('Transfer-Encoding', 'chunked');
2
3 // For Slingshot...
4 res.setHeader('X-SLR-EARLY-FLUSH', '1');
5
6 // For Akamai...
7 res.setHeader('X-Akamai-Stream', 'True');
res.write(renderTemplate('first-flush.html', context));
res.write(renderTemplate('second-flush.html', context));
res.end();