import { Title } from '@solidjs/meta' import { PostViewer } from '~/components/post-viewer' import { UserInfo } from '~/components/user-info' export default function Streamed() { return (
Solid Query - Streamed

Solid Query - Streamed Example

HTML is streamed from the server ASAP, reducing key metrics such as TTFB and TTI. Suspended queries are streamed to the client when they resolve on the server. This is represented in your devtools by the green and blue chunks of the waterfall.

Clients with javascript disabled will see the loading state for both queries. (try turning off javascript and reloading this page)

devtools streaming request
) }