2
votes
1answer
70 views
How can I tell if there is data in an input filehandle’s buffer in Perl?
I'm working on a program that uses an epoll-based event loop to handle multiple simultaneous socket connections. When the app detects that there is data to be read, it calls a pro …
0
votes
1answer
31 views
How to read exact number of bytes from a stream (tcp) socket?
In winsock, both the sync recv and the async WSARecv complete as soon as there is data available in a stream socket, regardless of the size specified (which is only the upper limit …
1
vote
3answers
59 views
What is a suitable buffer for Python’s struct module
In Python I'm accessing a binary file by reading it into a string and then using struct.unpack(...). Now I want to write to that string using struct.pack_into(...), but I get the e …
2
votes
3answers
112 views
handling central data buffer for many processes in C++
I ran into the following problem and cannot decide how to proceed:
I have a class, Reader, getting a chunk of data every 1/T seconds (actually the data is from video frames, 30 f …
1
vote
1answer
176 views
Java-Sockets: InputStream.read() vs BufferedReader.read()
Hello
I'm reading from a Socket's InputStream. Because I'm parsing the incoming data on the fly, I'm required to read character by character.
Does BufferedReader.read() the same …
1
vote
0answers
53 views
Silverlight MediaElement and UI Virtualization
I have an application that contains many controls on a panel, each with its own MediaElement playing video. I have been looking into the new UI Virtualization features of Silverlig …
0
votes
1answer
36 views
Remove empty table rows output buffering?
I have a large static table which is generated by a cgi script from a tmp file to a php file.
If it outputs
<td> </td>
Can I remove these with output buffering.
0
votes
3answers
130 views
buffering when passing input from standard input to a function
I asked about this yesterday, but I'm still having problems. I wrote a program in C which has a function that processes files which can be passed to it by a file pointer.
void pro …
0
votes
3answers
95 views
Is it possible to get unbuffered web browser output?
I have a small cgi script that fetches and validates a configuration file for Nagios. The typical run time is several minutes, and I would like to get some feedback in the browser …
1
vote
1answer
206 views
buffered I/O vs unbuffered IO
Hi,
I learnt that by default I/O in programs is buffered, i.e they are served from a temporary storage to the requesting program.
I understand that buffering improves IO performanc …
0
votes
2answers
234 views
Buffering a media content, while playing the other one in Windows Media Player using C#
I am developing an application in C# that has a form with Windows Media Player embedded inside. There are several links to some online content in my app. and I want user to change …
1
vote
3answers
74 views
Output buffering and large MySQL result sets in PHP 5
Hey guys
I'm trying to build an XML feed from a database with a ginormous table, almost 4k records. I want to use output buffering to get it to spit out the XML but the script sti …
0
votes
1answer
42 views
YouTube style throttling in Flash
I may be completely insane on this one, but it seems like the download/buffer rate of YouTube videos is faster at the beginning and the further the buffer point gets from the curre …
0
votes
3answers
93 views
Help me implement a rewindable buffer
This is where I'm so far:
I have the following the following use case (as impartial jUnit test) to show what I want to achieve:
buffer.add(o1);
assertEquals(1, buffer.size());
bu …
0
votes
1answer
38 views
Does Output Buffering help in performance?
I've heard that writing out the entire ASP.NET page in one go helps performance. Like having the following as the first line on Page_Load:
Response.BufferOutput = true;
And usin …
