I'm looking for a railsy way to stream partial views in Rails 3.2+. Right now streaming is supported only for yielding parts in layout from template via provide. But say I have n posts on a blog page, each post is generated in partial in about 300ms (please don't ask why it's so long) and I want user to start reading the first post immediately as it's ready.
Is it possible in rails now? Is there a way to explicitly "flush" the generated output like in php?