1
vote
0answers
25 views

what is difference between io_submit and file with O_ASYNC

I am reading this tutorial asynchronous disk file io, however it does't make me clear, and actually make me more confuesd. There are two diffierent async IO model according to this tutorial: ...
3
votes
3answers
144 views

Processing a large file in .Net

The Problem I need to be able to save and read a very big data structure using C#. The structure itself is rather simple, it's a very long array of a simple structs of a constant size. just an ...
0
votes
1answer
105 views

Java async socket IO

I've looked all over but I could not find a good example explaining NIO2 or how to do asynchronous IO with Java sockets. For example, if I want to speed up a web crawler by allowing threads to use ...
0
votes
2answers
53 views

PipeInputStream and PipeOutputStream synchronous or asynchronous?

I'm reading a Java book I found a sentence that seems incorrect: When reading, if there's no data available, the thread will be blocked until it new data will be available. Notice that this is a ...
0
votes
1answer
46 views

Sockets Winsock async blocking Read Write simultaneously

I have a client server arch and I am using blocking win sockets. I have a read and a write thread both on the server and on the client side. Say Client is waiting (blocked) on a read() call for ...
0
votes
0answers
46 views

Blocking, non-blocking and asynchronous I/O

I've been reading about the different types of I/O and started wondering why operating systems don't just implement non-blocking I/O and emulate blocking I/O through busy-waiting. One reason I ...
0
votes
1answer
29 views

Duplicated LBA request in Block Layer

I am using blktrace to understand Block Layer behavior in a multi-thread IO workload with high IO load. I can observe some duplicated LBA request in block layer. For example, I have only one write ...
1
vote
1answer
98 views

IO and parallel async in Fsharp

I have some computation intensive tasks, which are now only running on 1 core, so 1/8th of my machine capacity. At the end of each task, I write a log in a file. What would be the most graceful way ...
0
votes
2answers
98 views

Java 7 Async SecureSocket?

Java 7 shipped with asynchronous I/O. Does anyone here know if I can use this to make async calls to a SecureSocket? Rephrased: If I am using sslContext.getSocketFactory().createSocket("127.0.0.1", ...
0
votes
0answers
134 views

Can WaitForMultipleObjects or WaitForSingleObject be used with asynchronous ReadFile()?

I am trying to use WaitForMultipleObjects() to wait for multiple asynchronous ReadFile() completion, however it always return immediately and no byte has been read. On the other hand, ...
2
votes
2answers
83 views

When does write() to a file return EWOULDBLOCK?

I want to append data often to a file on the local filesystem. I want to do this without blocking for too long, and without making any worker threads. On Linux kernel 2.6.18. It seems that the POSIX ...
-1
votes
1answer
97 views

pcap asynchronous packet capturing

I am capturing IEEE802.11 packets with the pcap library. As yet i used pcap_loop and a callback function for receiving and then processing the packets. But now I have switch the wifi channel the ...
1
vote
1answer
66 views

NetUtil.asyncCopy from one file to append to another in Firefox extension

I'm trying to use NetUtil.asyncCopy to append data from one file to the end of another file from a Firefox extension. I have based this code upon a number of examples at ...
4
votes
2answers
186 views

Clojure message handling / async, multithreaded

I have a small Clojure consumer/publisher receiving messages, processing them and sending them off to other consumers, all via RabbitMQ. I've defined a message-handler that handles messages in a ...
0
votes
2answers
328 views

Is Async I/O generally a little slower than sync I/O?

While being good for thread hygiene I expected asynchronous I/O to always be a little slower than synchronous I/O. My tests seem to prove that async I/O sometimes is faster than sync. What am I ...
0
votes
1answer
368 views

Any suggestion for using non-blocking MySQL api on Tornado in Python3?

i was hoping tornado support for asynchronous sql database opertion ,after i read the source code, http://www.tornadoweb.org/documentation/_modules/tornado/database.html#Connection sigh,they are ...
0
votes
4answers
513 views

TCP client and server

I'm working on a project which expects a TCP client and Server, where server echoes the message back to client. Following is from the assignment: The server application shall: Listen for ...
0
votes
1answer
156 views

How do I determine the ideal pool size in an asynchronous blocking application?

Here is the code in question (a very simple crawler), the file is a list of urls, usually something > 1000. import sys, gevent from gevent import monkey from gevent.pool import Pool import httplib, ...
0
votes
4answers
182 views

Java - Process bytes as they are being read from a file

Is there a way to have one thread in java make a read call to some FileInputStream or similar and have a second thread processing the bytes being loaded at the same time? I've tried a number of things ...
1
vote
1answer
371 views

Are Node Fibers Blocking?

If you run an I/O intensive task in Node.js, like some async database operation, using node-fibers, is it blocking? I haven't used node-fibers yet b/c it seems that -- if used in code that processes ...
4
votes
2answers
747 views

How do system calls like select() or poll() work under the hood?

I understand that async I/O ops via select() and poll() do not use processor time i.e its not a busy loop but then how are these really implemented under the hood ? Is it supported in hardware somehow ...
3
votes
2answers
126 views

F# Async.FromBeginEnd calling End function when it shouldn't?

I am doing some low level socket work using F# and am making everything asynchronous. I have a socket that I am using to listen for connections using an async workflow to handle them so it is using ...
1
vote
2answers
360 views

Real-life examples of async non-blocking loop vs. multithreading?

I have been developing in Node.js recently and have a good idea of what is going on as far as the event loop. Given that I had experience with javascript, Node made sense for me to use, but I wonder, ...
2
votes
1answer
280 views

Android non-blocking file i/o?

I'm currently writing an async i/o library for Java that has a very similar API to Node.js. I could do the socket part with nio, but there seems to be no FileChannel that extends SelectableChannel so ...
0
votes
0answers
184 views

Potential kind of asynchronous (overlapped) I/O implementation in Windows

I would like to discuss potential kind of asynchronous (Overlapped) I/O implementations in Windows, because there are many ways to implement this. Overlapped I/O in Windows provides the ability to ...
2
votes
1answer
67 views

How to write through to a db one by one from evented input that arrives too fast in node.js

I receive input from a MS SQL SELECT query using the tedious driver. I have attached a listener to the "row" event of the reader: request.on('row', function(columns) { ...
0
votes
1answer
121 views

Lua producer-consumer pattern with consumers waiting for different data

The problem One data source generating data in format {key, value} Multiple receivers each waiting for different key Example Getting data is run in loop. Sometimes I will want to get next value ...
2
votes
2answers
351 views

async file I/O in Delphi

in this article delphi.net(prism) support async file io. Delphi(Native/VCL) has Async File IO Class too?
3
votes
3answers
399 views

Are Asynchronous writes to a socket thread safe?

Consider the Socket.BeginSend() method. If two thread pool threads were to call this method simultaneously, would their respective messages end up mixing with each other or does the socket class keep ...
0
votes
2answers
195 views

How does writing block in I/O multiplexing?

I'm learning to write non-blocking server and client applications using epoll, poll, etc. and came across this event flag: POLLOUT: Writing now will not block. I ...
0
votes
1answer
381 views

Proper handling of context data in libaio callbacks?

I'm working with kernel-level async I/O (i.e. libaio.h). Prior to submitting a struct iocb using io_submit I set the callback using io_set_callback that sticks a function pointer in iocb->data. ...
0
votes
1answer
87 views

What's the difference between async io and do io in non-main thread?

I've read some articles about async IO. But I don't understand the difference between async io and do IO in non-main thread. I mean, we can do sync IO in a new-born thread, not in the main thread, it ...
1
vote
1answer
814 views

Erlang file IO and asynchronous threads

I was reading the erlang documentation about file io and saw this: On operating systems with thread support, it is possible to let file operations be performed in threads of their own, allowing ...
11
votes
1answer
3k views

Difference between POSIX AIO and libaio on Linux?

What I seem to understand: POSIX AIO APIs are prototyped in <aio.h> and you link your program with librt(-lrt), while the libaio APIs in <libaio.h> and your program is linked with libaio ...
7
votes
1answer
956 views

Intro to non-threaded async IO for C++?

I work on a desktop app team composed of "UI developers" (us) and "C++ developers" (them). The C++ devs are responsible for getting us all the data that we display in the UI, so they do all the IO, ...
2
votes
1answer
164 views

POSIX AIO: Any (good) way to correlate completion notifications back to original request?

Am I right in thinking that AIO completion notifications (whether done via threads or signals) give you no information as to which request has completed? Is there any way to accomplish this ...
3
votes
1answer
697 views

Asynchronous methods calls with Ruby like with Ajax

I am working with XMPP and I have a message callback which is activated on the event of every message being sent. My aim is to send the data arriving by the message to an API within the callback and ...
2
votes
3answers
593 views

.NET cancelling async I/O operations

In this particular case, I'm writing a TCP/IP server, and I'm using TcpListener.BeginAcceptTcpClient() to accept incoming connections. The server logics is implemented in a single class implementing ...
4
votes
1answer
249 views

Perl: event-based and parallel-based style - when choose one?

It`s slightly difficult to ask good questions if you knowledge a small, but I try to be best. My apologies if I mislead you. So, I try to understand generally differences on event-based and ...
2
votes
3answers
925 views

C++ Input and output to the console window at the same time

I'm writing a server(mainly for windows, but it would be cool if i could keep it multiplatform) and i just use a normal console window for it. However, I want the server to be able to do commands like ...
1
vote
2answers
757 views

Performance of select/poll vs asynchronous I/O

From a performance standpoint, which one is better? select/poll or asynchronous I/O? My earlier impression was select/poll repeatedly asks the kernel for data, whereas asynchronous I/O relies on ...
4
votes
2answers
641 views

Can starting multiple asyncronous read/write operations on the same Stream corrupt the data?

I'm using asynchronous I/O because it does not block the calling thread and does the threading stuff behind the scenes. If I invoke multiple async operations like BeginWrite()'s on the same Stream, ...
0
votes
3answers
1k views

WaitCommEvent Fails Invalid Parameter on Second Pass

My application uses serial I/O with overlapped events. For some reason, ::WaitCommEvent fails consistently on the second pass through the loop with ERROR_INVALID_PARAMETER. If anyone can explain ...
0
votes
1answer
288 views

Rails Asynchonous Processing in the Model

My rails app has a simple model Links which tracks all the Urls associated with an Update. class Link include Mongoid::Document include Mongoid::Timestamps field :url, type: String field :domain, ...
1
vote
1answer
531 views

aio on osx: Is it implemented in the kernel or with user threads? Other Options?

I am working on my small c++ framework and have a file class which should also support async reading and writing. The only solution other than using synchronous file i/o inside some worker threads I ...
1
vote
1answer
713 views

How can I serialize an object to a non-blocking socket in java

I have been reading about java nio and non-blocking sockets and I want to write serialized objects into the socket. I was reading this article here ...
13
votes
3answers
3k views

buffered asynchronous file I/O on linux

I am looking for the most efficient way to do asynchronous file I/O on linux. The POSIX glibc implementation uses threads in userland. The native aio kernel api only works with unbuffered ...
2
votes
2answers
705 views

Control thread to exit haskell application

I'm brand new to Haskell and in messing around with a few samples I've got a problem where I can't stop the program. I'm using Windows 7 and using runhaskell from ght. Ctrl-c doesn't work so I have to ...
0
votes
2answers
293 views

Writing High Performance Server. Which method?

if you would need to write a high performance server how would you do it? Using asynchronous blocking epoll / kqueue? But how to handle the blocking System call epoll / kqueue here? Perhaps with a ...
2
votes
1answer
854 views

What are the differences between librt and libeio for asynchronous I/O, and why would I choose one over the other?

I really want to put more in the body to explain the question… but the title really covers it all. As far as I can suss, librt is more “official” (it’s a standard part of libc?), but I also remember ...

1 2