Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
3k views

Asynchronous file writing possible in python?

Is there an existing module or an easy way to use aio_write to write to a file asynchronously in python? I know by file io that comes with Python is all blocking which is fine in most cases, but for ...
3
votes
2answers
74 views

how to wait on async files in perl

I am trying to test a logging module which asynchronously writes to a file... the unit test tries to read the log to make sure the written message matches expected. However, I am finding that the ...
1
vote
3answers
1k views

AIO on OS X vs Linux - why it doesn't work on Mac OS X

My question is really simple. Why the code below does work on linux, and doesn't on Mac OS X. To compile save the file to aio.cc, and compile with g++ aio.cc -o aio -lrt on Linux, and g++ aio.cc -o ...