Tagged Questions
The flush tag has no wiki summary.
99
votes
8answers
53k views
How to flush output of Python print?
I would like to force Python's print function to output to the screen.
11
votes
2answers
7k views
Do I need to do StreamWriter.flush()?
suppose this code (C#):
using (MemoryStream stream = new MemoryStream())
{
StreamWriter normalWriter = new StreamWriter(stream);
BinaryWriter binaryWriter = new BinaryWriter(stream);
...
10
votes
3answers
971 views
How to make sure that a file was permanently saved on USB, when user doesn't use “Safely Remove Hardware”?
When I save a file on a USB within my delphi application, how can I make sure the file is really (permanently) saved on the USB, when "Safely Remove Hardware" is not performed (especially forgotten to ...
9
votes
2answers
231 views
Flushing Perl STDIN buffer
Is there any way to clear the STDIN buffer in Perl? A part of my program has lengthy output (enough time for someone to enter a few characters) and after that output I ask for input, but if characters ...
9
votes
3answers
286 views
Is there a way to check whether the processor cache has been flushed recently?
On i386 linux. Preferably in c/(c/posix std libs)/proc if possible. If not is there any piece of assembly or third party library that can do this?
Edit: I'm trying to develop test whether a kernel ...
9
votes
4answers
1k views
How to flush a TFileStream?
TFileStream provides buffered output, which is great in most cases, but in some cases (especially during debugging) it's nice to flush the buffer immediately. Thing is, I don't know of any way to do ...
9
votes
4answers
6k views
PHP Flush: How Often and Best Practises
I just finished reading this post: http://developer.yahoo.com/performance/rules.html#flush and have already implemented a flush after the top portion of my page loads (head, css, top ...
7
votes
4answers
1k views
When do browsers start to render partially transmitted HTML?
I have a long-running report and want to show a wait-spinner to the user while it's generating. I have made this work already but am not sure I'm doing it the best or right way.
This is using ...
6
votes
1answer
114 views
Do you need to call flush() on a Stream if you are using “using statement”?
I am not sure whether I need to call flush if I write something like this:
using (File stream...)
using (CryptoStream..)
using (BinaryWriter...)
{
//do something
}
Is this always automatically ...
6
votes
1answer
3k views
Is there anyway to programmably flush the buffer in log4net
I'm using log4net with AdoNetAppender. It's seems that the AdoNetAppender has a Flush method. Is there anyway I can call that from my code?
I'm trying to create an admin page to view all the entries ...
5
votes
2answers
188 views
Firefox 4 doesn't render partial pages
I have an ASP.NET MVC page which contains a table, where every row takes some time to load. So I'm calling Response.Flush() after every row is rendered.
IE9 behaves the way it should: displays rows ...
5
votes
2answers
116 views
periodic save/flush/commit - is there a name to this pattern?
I find myself again and again faced with a similar problem: there's some piece of code that processes data as it arrives from the user/network/produces of some sort. For efficiency reasons, I don't ...
5
votes
6answers
351 views
Accessing array from multiple threads
Let's say I have two arrays:
int[] array1 = new int[2000000];
int[] array2 = new int[2000000];
I stick some values into the arrays and then want to add the contents of array2 to array1 like so:
...
5
votes
6answers
2k views
Does reading from stdin flush stdout?
stdout is line-buffered when connected to a terminal, but I remember reading somewhere that reading (at least from stdin) will automatically flush stdout. All C implementations that I have used have ...
5
votes
7answers
6k views
Bash: How to flush output to a file while running
I have a small script, which is called daily by crontab using the following command:
/homedir/MyScript &> some_log.log
The problem with this method is that some_log.log is only created after ...
5
votes
5answers
821 views
How to ensure all data has been physically written to disk?
I understand that .NET FileStream's Flush method only writes the current buffer to disk, but dependent on Windows' disk driver and the hard disk firmware this is no guarantee that the data is actually ...
5
votes
2answers
4k views
Flush disk write cache from Windows CLI
Does anyone know how to flush the disk write cache data from the cache manager for the current directory (or any given file or directory, for that matter), from a Windows command line?
4
votes
2answers
887 views
flush() doesn't work in Firefox 4
I noticed that the php flush(); doesn't work in Firefox 4 beta 7, as it works in 3.6.12.
I recently installed firefox 4 beta 7, and the contents are not being flush immediately when flush() is ...
4
votes
4answers
2k views
PHP buffer ob_flush() vs. flush()
What's the difference between ob_flush() and flush() and why must I call both?
The ob_flush() reference says "This function will send the contents of the output buffer (if any).".
The flush() ...
4
votes
6answers
1k views
How to flush output after each `echo` call?
I've a php script that only produces logs to the client.
When I echo something, i wan't it to be transfered to client on-the-fly.
(Because while the script is processing, the page is blank)
I had ...
4
votes
4answers
1k views
c++ std::ofstream flush() but not close()
I'm on MacOSX.
In the logger part of my application, I'm dumping data to a file.
suppose I have a globally declared std::ofstream outFile("log");
and in my logging code I have:
outFile << ...
4
votes
3answers
833 views
Named pipe is not flushing in Python
I have a named pipe created via the os.mkfifo() command. I have two different Python processes accessing this named pipe, process A is reading, and process B is writing. Process A uses the select ...
4
votes
2answers
868 views
How to flush the io buffer in Erlang?
How do you flush the io buffer in Erlang?
For instace:
io:format("hello") or
io:format(user, "hello")
This post seems to indicate that there is no clean solution.
Is there a better solution than ...
4
votes
2answers
6k views
Is it necessary to call a flush() (JPA interface) in this situation?
Because calling a flush() to get every entities persist from memory to database. So if I use call too much unnecessary flush(), it could take much time therefore not a good choice for the performance. ...
4
votes
3answers
358 views
sleep() is stalling my program too early. What am I doing wrong?
I want to write a small program that should print something like
testing CPU... done
testing RAM... done
and so on.
I wrote the following program in C:
printf( "testing RAM...\t\t" );
...
3
votes
1answer
46 views
Flushing changes made to VBProject.VBComponents in Excel using VBA
I've been experiencing some strange quirks in Excel while programatically removing modules then reimporting them from files. Basically, I have a module named VersionControl that is supposed to export ...
3
votes
2answers
72 views
Immediately flushing log statements using the Cocoa Lumberjack logging framework, the way NSLog flushes to console
Many iOS developers have found the Cocoa Lumberjack Logging framework to fill a need that simple NSLog statements don't. It's reminiscent of Log4J in the Java world.
In any event, I have written my ...
3
votes
1answer
126 views
Django flush vs sqlclear & syncdb
Can anyone tell if there is a difference between
>manage.py flush # or reset
and
>manage.py sqlclear appname | python manage.py dbshell
>manage.py syncdb
3
votes
1answer
173 views
Node.js : How can I Output Data Before I end the Response?
Here is my snippet I tested it in Chrome 11, and Firefox 4:
var http = require('http');
http.createServer(function(request, response){
// Write Headers
response.writeHead(200);
// Write ...
3
votes
1answer
136 views
H5F.flush() removed from HDF5DotNet 1.8.7?
I recently upgraded my Hdf5DotNet wrapper library from 1.8.6 to 1.8.7 and noticed that the H5F.flush() method was removed. Anyone know the reasoning behind this?
3
votes
3answers
704 views
NHibernate 3.0: TransactionScope and Auto-Flushing
In NHibernate 3.0, FlushMode.Auto does not work when running under an ambient transaction only (that is, without starting an NHibernate transaction). Should it?
using (TransactionScope scope = new ...
3
votes
3answers
3k views
How often does python flush to a file?
I was wondering how often python flushes to a file. Also wondering how often python flushes to stdout. I believe python flushes to stdout after every new line but that being said, if you overload ...
3
votes
5answers
901 views
How to delete an instance of a class?
So, I have this project that creates multiple instances of a class, and list them.
At some point, the instanced class is not needed anymore. How can I flush it ?
So far, it doesn't happen, even when ...
3
votes
3answers
371 views
Abort a slow flush to disk after write?
Is there a way to abort a python write operation in such a way that the OS doesn't feel it's necessary to flush the unwritten data to the disc?
I'm writing data to a USB device, typically many ...
3
votes
8answers
4k views
flush in java.io.FileWriter
I have a question in my mind that, while writing into the file, before closing is done, should we include flush()??. If so what it will do exactly? dont streams auto flush??
EDIT:
So flush what it ...
3
votes
3answers
2k views
How do you flush Python sockets?
I've written a server in Python that is meant to send data to the client in the form "Header:Message"
I would like to be able to have each message sent individually so that the client will need to ...
3
votes
4answers
519 views
how to make echo print out right away in PHP?
By default it will not print out anything until the whole page has finished executing.
Is there any function that can make it flush out right away?
But not by calling ob_end_flush() multiple ...
3
votes
3answers
3k views
SQL Server Log File Confusion
I'm looking for some clarity on the SQL Server log file. I have a largish database (2GB) which lately wasn't backed up for whatever reason. The log file for the database grew to around 11GB which ...
3
votes
5answers
6k views
How to empty/flush Windows READ disk cache in C#?
If I am trying to determine the read speed of a drive, I can code a routine to write files to a filesystem and then read those files back. Unfortunately, this doesn't give an accurate read speed ...
2
votes
1answer
64 views
PHP flush() / ob_flush() not working only with Android browser
I have found similar questions but none as specific as this one.
The following code is a simplified version that reproduces the problem.
<?php
function addProgressText($texto)
{
echo ...
2
votes
2answers
126 views
python print function in real time
I recently switched OS and am using a newer Python (2.7). On my old system, I used to be able to print instantaneously. For instance, suppose I had a computationally intense for loop:
for i in ...
2
votes
1answer
137 views
Hibernate java.lang.ClassCastException: org.hibernate.action.EntityIdentityInsertAction cannot be cast to org.hibernate.action.EntityInsertAction
I'm using Hibernate with an EntityManager. When I use
Session session = (Session)entityManager.getDelegate();
session.flush();
session.clear();
I get
java.lang.ClassCastException: ...
2
votes
4answers
329 views
Close a filestream without flush
Can I close a file stream without flush (in C#)? I understood that close & dispose call the flush method before.
2
votes
3answers
77 views
what is the difference between array of bytes and bytes of data?
I came across this question. I can guess(only guess) the answer will be 3ed option. But I doubted what is the difference between array of bytes and bytes of data in java?
2
votes
2answers
178 views
Why do we have to manually flush() the EntityManager in a extended PersistenceContext?
In our J2EE application, we use a EJB-3 stateful bean to allow the front code to create, modify and save persistent entities (managed through JPA-2).
It looks something like this:
@LocalBean
...
2
votes
1answer
119 views
PHP buffered output depending on server setting?
I'm using the following code to produce buffered output on a db maintenance script:
function flush_buffers($string){
echo $string;
ob_end_flush();
ob_flush();
flush();
ob_start();
...
2
votes
4answers
577 views
PHP Flush() not working in Chrome
I stumbled upon this function which promised to work across IE, FF & Chrome. But it does not work in Chrome. Is there a work around?
function buffer_flush(){
echo str_pad('', 512);
echo ...
2
votes
2answers
516 views
NHibernate: is it valid to call Session.Flush() before committing a transaction?
I need to execute two operations inside a NHibernate's unit of work: a transactional one (an entity saving) and a not-transactional one.
Since the not-transactional operation cannot be rollbacked, if ...
2
votes
1answer
267 views
Why is Grails Searchable Plugin causing errors on Hibernate AutoFlush?
In the Grails 1.2.5 project that I am trying to troubleshoot, we use the Grails Searchable plugin .5.5.1.
The problem is that whenever we attempt to index large sets domain classes, Grails keeps ...
2
votes
1answer
441 views
grails sessionFactory.currentSession.flushMode not work with thread?
In grails we have the following config:
DataSource.groovy:
hibernate {
flush.mode="commit"
}
which prints "COMMIT" when we log it in a transactional context:
println ...