Tagged Questions
The io-buffering tag has no wiki summary.
12
votes
7answers
17k views
4
votes
2answers
261 views
Understanding Ruby and OS I/O buffering
How does IO buffering work in Ruby? How often is data flushed to the underlying stream when using the IO and File classes? How does this compare to OS buffering? What needs to be done to guarantee ...
4
votes
5answers
162 views
Is file buffering by OS harmful?
I wrote a download library for my colleague. It writes downloaded data to files.
My colleagues found that the file stays small for a long time, even if 100 Mb data have been downloaded.
So they ...
2
votes
1answer
394 views
Streaming web uploads to socket with Rack
I currently have a Sinatra app running in an FCGI handler. I want to write a handler that will sit within the rackup file (probably in front of the Sinatra app) and will stream big file uploads to ...