Top "Buffering" questions

Buffering is a process of temporarily storing data while it is being moved from one place to another.

Buffered reading from stdin using fread in C

I am trying to efficiently read from the stdin by using setvbuf in `_IOFBF~ mode. I am new to buffering. …

c buffering fread
What is the alternate of HttpRequest.EnableRewind() in ASP.NET Core 3.0?

BufferingHelper.EnableRewind(); Above is an extension method for HttpRequest object in ASP.NET Core 2.2. It is no more there in …

httprequest buffering alternate asp.net-core-3.0
StreamReader and buffer in C#

I've a question about buffer usage with StreamReader. Here: http://msdn.microsoft.com/en-us/library/system.io.streamreader.aspx you …

c# streaming buffer streamreader buffering
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 …

ruby operating-system io buffering io-buffering
Stop audio buffering in the <audio> tag

I am currently working in using the HTML5 audio player to provide a audio stream (24/7 radio stream) via the (mobile) …

html html5-audio audio-streaming buffering
read huge text file line by line in C++ with buffering

I need to read huge 35G file from disc line by line in C++. Currently I do it the following …

c++ performance stl buffering
Getting buffering progress value in HTML5 video player

In Firefox, when I see the simple video element in this example, it has default browser controls. Right after the …

html html5-video buffering
JTextFields on top of active drawing on JPanel, threading problems

Has anyone ever tried to use Swing to construct a proper multi-buffered rendering environment on top of which Swing user …

java multithreading swing rendering buffering
Why does printf() not print anything before sleep()?

I'm just learning C with Kernighan and Ritchie's book; I'm in the basics of the fourth chapter (functions stuff). The …

c stdout buffering
Streaming with Android MediaPlayer - catching errors and buffering

I'm having trouble getting MediaPlayer to be resilient when streaming from a HTTP URL. If I start playing the file, …

android streaming media-player buffering