Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

43
votes
9answers
23k views

Python output buffering

Is output buffering enabled by default in Python's interpreter for sys.stdout ? If the answer is positive, what are all the ways to disable it ? Suggestions so far: Use the -u command line switch ...
8
votes
1answer
251 views

Explanation for tiny reads (overlapped, buffered) outperforming large contiguous reads?

(apologies for the somewhat lengthy intro) During development of an application which prefaults an entire large file (>400MB) into the buffer cache for speeding up the actual run later, I tested ...
3
votes
3answers
92 views

Is Stream.Read buffered when doing network I/O?

So I was recently doing some work, when somebody told me that if doing a Stream.Read on a network stream that is obtained from calling one of .NET's GetResponseStream on a WebResponse or those are ...
3
votes
1answer
494 views

Is stdout line buffered, unbuffered or indeterminate by default?

Section 7.9.13/7 of c99 states that: At program start-up, three text streams are predefined and need not be opened explicitly - standard input (for reading conventional input), standard output ...
3
votes
5answers
535 views

Buffered vs non buffered, which one to use?

I am sorry if this is a duplicate but I was not able to find a definitive answer to what is the best practice for each type. I would like to know what the appropriate conditions are that define when ...
3
votes
5answers
2k views

How can I buffer non-blocking IO?

When I need buffered IO on blocking file descriptor I use stdio. But if I turn file descriptor into non-blocking mode according to manual stdio buffering is unusable. After some research I see that ...
2
votes
1answer
80 views

SSH with Paramiko : failing to read data

Below is my driver information where I need to pull the data(Firmware Version) using ssh script as show below. ncmdvstk:~ $ ssh admin@153.88.127.21 Password: MSM760 V. 5.3.6.18-01-9124 (C) 2010 ...
2
votes
2answers
1k views

Efficient way of handling file pointers in Java? (Using BufferedReader with file pointer)

I have a log file which gets updated every second. I need to read the log file periodically, and once I do a read, I need to store the file pointer position at the end of the last line I read and in ...
1
vote
1answer
64 views

Buffered Writer loads corrupt data when new file created

Basically, I'm trying to capture the accelerometer data into a txt file. The code writes the accel data into a string, and then updates everytime it changes which is often. I included a toggle button ...
1
vote
1answer
117 views

UNIX buffered vs unbuffered I/O

What is the difference between Unbuffered I/O and standard I/O? I know that using read(), write(), close() are unbuffered IO. Printf and gets are buffered IO. I also know that it is better to use ...
1
vote
5answers
108 views

Java app breaks 10% of the time

I have an app that uses a 2400x1800 buffered Image (which I know it takes a lot of resources), but it works perfectly more than 90% of the time. Takes 130 mb of RAM and uses 5% of CPU. The problem ...
1
vote
1answer
80 views

Streaming printing with PHP

I've written a PHP script that makes a request to a search engine, accesses the served results, extracts some details from the results and then prints them in a more useful form. It all works well, ...
1
vote
4answers
2k views

Search for Binary Pattern in C (Read buffered binary file)

Hey there. I'm trying to write a small program that will read the four following bytes after the last occurrence of "0xFF 0xC0 0x00 0x11" which can be converted easily to binary or decimal. The ...
0
votes
1answer
147 views

infinite(till the end) display buffered contents, in a sencha touch mobile app

I had a fairly long list to display in my sencha touch mobile app, due to the contents of the list, the app was pretty heavy and then i found this great tool it increased the efficiency drastically ...
0
votes
0answers
155 views

Buffered Reader/Writer VS Buffered Input/Output Stream to transfer files via FTP

I have been reading on URL and URLConnection and I know that both Buffered InputStream/OutputStream (for character streams) and, Buffered Reader/Writer (for byte streams) can be used to transfer the ...
0
votes
6answers
292 views

Avoiding memcpy in C++ buffered output

I am trying to write directly to an fstream output buffer to avoid a memcpy. Why does the following code not work? It compiles, runs and produces the right length output file on Linux. But the ...
0
votes
2answers
698 views

Sending buffered data through a socket from Android

I develop the first part of an Android application that allows to broadcast video stream through the network. Currently, I'm sending the video in a very direct way, like this: Socket socket = new ...
0
votes
1answer
203 views

java script drawing into buffered image

I want to draw a bitmap into buffer and create a bitmap using javascript. ideally i should create a bitmap by drawing lines, rectangles and stuffs like that, and paint into the screen when required. ...
0
votes
4answers
689 views

client socket sends data but server socket does not receive them. c++ buffered stream?

I am working on a project where a partner provides a service as socket server. And I write client sockets to communicate with it. The communication is two way: I send a request to server and then ...
0
votes
1answer
206 views

Type of Linux/Unix I/O

i have to make a presentation about Linux/Unix I/O: File I/O,Standard I/O, buffered/unbuffered I/O and formatted/unformatted I/O. i'm not sure how to order these kinds of I/O to make sense. here is ...
-1
votes
3answers
4k views

Buffered Reader readLine() with Empty lines

I am using buffered reader to grab a line at a time from a text file. I am trying to also get the line number from the text file using a tracking integer. Unfortunately BufferedReader is skipping ...