hn-clojure
hn-clojure copied to clipboard
Speed up rendering
Right now, pages render a little slowly as a result of rendering everything on the server. The server is making a separate API call to Hacker News for every story or comment that it needs. The page is blocked from displaying anything until all requests come back.
We can speed this up by rendering stories and comments through React (via Reagent) as they come in.