Tagged Questions

Use of concurrency without the usual mutual exclusion primitives, guaranteeing that thread operations will not block indefinitely. This is usually handled with atomic value modification (increment/decrement) and/or reading (compare-and-exchange) operations.

learn more… | top users | synonyms (1)

57
votes
12answers
25k views

Non-blocking read on a subprocess.PIPE in python

I'm using the subprocess module to start a subprocess and connect to it's output stream (stdout). I want to be able to execute non-blocking reads on its stdout. Is there a way to make .readline ...
17
votes
8answers
2k views

Is asynchronous jdbc call possible?

I wonder if there is a way to make asynchronous call to a database? For instance, imagine that I've a big request that take a very long time to process, I want to send the request and receive a ...
15
votes
6answers
663 views

What are some architectural reasons to use node.js aside from scalability?

The most common theme I read about why to use node.js is for high scalability due to it's evented, non-blocking I/O model. I'm trying to understand other non-scalability uses cases (and aside from ...
15
votes
5answers
4k views

Simplest way to do a fire and forget method in C#?

I saw in WCF they have the [OperationContract(IsOneWay = true)] attribute. But WCF seems kind of slow and heavy just to do create a nonblocking function. Ideally there would be something like ...
14
votes
5answers
631 views

End of nonblocking file

How is end of file detected for a file in nonblocking mode?
13
votes
1answer
904 views

When and how to use Tornado? When is it useless?

Ok, Tornado is non-blocking and quite fast and it can handle a lot of standing requests easily. But I guess it's not a silver bullet and if we just blindly run Django-based or any other site with ...
13
votes
3answers
1k views

Is there a non-blocking version of MessageBox.Show (or something like it)?

Long-delayed update I'm accepting MUG4N's answer to this question, and I also want to respond to some of the criticisms that were raised against it. ChrisF said: ...you can't make UI calls ...
13
votes
6answers
13k views

Polling the keyboard in python

How can I poll the keyboard from a console python app? Specifically, I would like to do something akin to this in the midst of a lot of other I/O activities (socket selects, serial port access, ...
12
votes
5answers
2k views

Java thread per connection model vs NIO

Is the non-blocking Java NIO still slower than your standard thread per connection asynchronous socket? In addition, if you were to use threads per connection, would you just create new threads or ...
12
votes
3answers
2k views

What is the point/purpose of Ruby EventMachine, Python Twisted, or JavaScript Node.js?

I don't understand what problem these frameworks solve. Are they replacements for a HTTP server like Apache HTTPD, Tomcat, Mongrel, etc? Or are they more? Why might I use them... some real world ...
12
votes
5answers
927 views

Is there a Push-based/Non-blocking XML Parser for Java?

I'm looking for an XML parser that instead of parsing from an InputStream or InputSource will instead allow blocks of text to be pushed into the parser. E.g. I would like to have something like the ...
10
votes
1answer
915 views

Python: why does a read-only open of a named pipe block?

This is purely an academic question rather than one which is blocking any coding effort on my part. I've noticed a couple of oddities when dealing with named pipes (FIFOs) under various flavors of ...
10
votes
8answers
13k views

C non-blocking keyboard input

I'm trying to write a program in C (on linux) that loops until the user presses a key, but shouldn't require a keypress to continue each loop. Is there a simple way to do this? I figure I could ...
9
votes
3answers
116 views

Is non-blocking I/O really faster than multi-threaded blocking I/O? How?

I searched the web on some technical details about blocking I/O and non blocking I/O and I found several people stating that non-blocking I/O would be faster than blocking I/O. For example in this ...
9
votes
2answers
806 views

Non-blocking modal Swing progress dialog

A daft question, but I really cannot get this to work: I have some long-running process in a Swing application which may take several minutes. I want to display a progress dialog to the user while ...
8
votes
5answers
194 views

Non-blocking / Asynchronous Execution in Perl

Is there a way to implement non-blocking / asynchronous execution (without fork()'ing) in Perl? I used to be a Python developer for many years... Python has really great 'Twisted' framework that ...
8
votes
2answers
140 views

Non-blocking javascript and css in modern browsers. Is it still needed?

I am playing a little with some non-blocking JavaScript loading. This means I have a small snippet of JavaScript in my head, and load all my external files at runtime. I even took it a little further ...
7
votes
2answers
71 views

Why is “Multiplexed, non-blocking I/O, [..] much more scalable than thread-oriented, blocking I/O”?

I'm reading about Channels in the JDK 7 docs (here), and stumbled upon this: Multiplexed, non-blocking I/O, which is much more scalable than thread-oriented, blocking I/O, [...] Is there a ...
7
votes
3answers
237 views

Implementing a multiple producer/consumer lockless queue in C\C++

I have finished my basic implementation on a single producer/consumer on a lockless queue and it runs nicely. However, when I try to expand it to a multiple producer/consumer I start to get conflicts. ...
7
votes
5answers
2k views

Do i need node.js in Python like I would with PHP?

I have been using PHP for some time now. And I have been thinking about learning node.js to go along with it to use the non blocking idea for creating an online game or app. There is quite a bit of ...
7
votes
5answers
626 views

Volatile and Thread.MemoryBarrier in C#

To implementing a lock free code for multithreading application I used volatile variables, Theoretically: The volatile keyword is simply used to make sure that all threads see the most updated value ...
7
votes
2answers
1k views

Python/Erlang: What's the difference between Twisted, Stackless, Greenlet, Eventlet, Coroutines? Are they similar to Erlang processes?

My incomplete understanding is that Twisted, Stackless, Greenlet, Eventlet, Coroutines all make use of async network IO and userland threads that are very lightweight and quick to switch. But I'm not ...
6
votes
5answers
544 views

Non-blocking console input C++

I'm looking for a (multiplatform) way to do non-blocking console input for my C++ program, so I can handle user commands while the program continually runs. The program will also be outputting ...
6
votes
3answers
1k views

Non-Blocking File IO in Java

I want to write to a named pipe (already created) without blocking on the reader. My reader is another application that may go down. If the reader does go down, I want the writer application to neep ...
6
votes
6answers
370 views

Is there an use case for non-blocking receive when I have threads?

I know non-blocking receive is not used as much in message passing, but still some intuition tells me, it is needed. Take for example GUI event driven applications, you need some way to wait for a ...
6
votes
3answers
544 views

Is it possible to do asynchronous / parallel database query in a Django application?

I have web pages that take 10 - 20 database queries in order to get all the required data. Normally after a query is sent out, the Django thread/process is blocked waiting for the results to come ...
5
votes
1answer
228 views

What's the difference between async and nonblocking in unix socket?

I'm seeing such code in nginx: if(fcntl(ngx_processes[s].channel[0], F_SETFL, fcntl(s, F_GETFL) | O_NONBLOCK) == -1) { ... if (ioctl(ngx_processes[s].channel[0], FIOASYNC, &on) == -1) { ... ...
5
votes
3answers
2k views

Thread interrupt not ending blocking call on input stream read

I'm using RXTX to read data from a serial port. The reading is done within a thread spawned in the following manner: CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(port); ...
5
votes
2answers
374 views

Non-blocking concurrent collection?

System.Collections.Concurrent has some new collections that work very well in multithreaded environments. However, they are a bit limited. Either they block until an item becomes available, or they ...
5
votes
1answer
294 views

how do twisted/tornado et cetera work

I understand that they work in some way distinct from making a thread per user. How exactly does that work? (Does 'non-blocking' have something to do with it?)
5
votes
1answer
1k views

Are nonblocking I/O operations in Perl limited to one thread? Good design?

I am attempting to develop a service that contains numerous client and server sockets (a server service as well as clients that connect out to managed components and persist) that are synchronously ...
5
votes
4answers
716 views

Is there a simple method for checking whether a Ruby IO instance will block on read()?

I'm looking for a method in Ruby which is basically this: io.ready_for_read? I just want to check whether a given IO object (in my case, the result of a popen call) has output available, i.e. a ...
5
votes
7answers
9k views

C nonblocking IO on Linux

How do you do nonblocking console IO on Linux/OS X in C?
5
votes
3answers
5k views

Cross-platform (linux/Win32) nonblocking C++ IO on stdin/stdout/stderr

I'm trying to find the best solution for nonblocking IO via stdin/stdout with the following characteristics: As long as there is enough data, read in n-sized chunks. If there's not enough data, read ...
5
votes
2answers
2k views

Making a Nonblocking socket for WinSocks and *nix

In C/C++, how would I turn a blocking socket into a non blocking socket in both WinSocks and *nix; so that select() would work correctly. You can use the pre-processor for the platform specific code.
4
votes
4answers
93 views

optimal java threadsafe object pooling

I am not that familiar with the concurrent library of Java, so for the following problems I would normally just write my own mutex governed code, but I am concerned that with servlet traffic, the ...
4
votes
2answers
303 views

Java: Help with non-blocking thread that runs an external process

I have created a Java GUI application which functions as a wrapper for many low level external processes. The utility works as is, but is in desperate need of one major improvement. I want my ...
4
votes
2answers
219 views

Can someone give me a good explanation of 'send' behavior for non-blocking sockets?

I have read the documentation at least 10 times now and have also read some 10 or so code snippets and full programs where non-blocking sockets are used for sending data. The problem is that some of ...
4
votes
1answer
1k views

Simultaneous socket read/write (“full-duplex”) in Linux (aio specifically)

I'm porting an application built on top of the ACE Proactor framework. The application runs perfectly for both VxWorks and Windows, but fails to do so on Linux (CentOS 5.5, WindRiver Linux 1.4 & ...
4
votes
2answers
766 views

C /C++ Lock-free (or nonblocking) Ring Buffer that OVERWRITES oldest data?

I'm trying to find a way to make a Lock Free OR Non-blocking way to make a Ring Buffer for single consumer / single consumer that will over-write the oldest data int the buffer. I've read a lot of ...
4
votes
2answers
1k views

Why is a non-blocking TCP connect() occasionally so slow on Linux?

I was trying to measure the speed of a TCP server I'm writing, and I've noticed that there might be a fundamental problem of measuring the speed of the connect() calls: if I connect in a non-blocking ...
4
votes
3answers
3k views

C: non-blocking udp socket: what do I get?

I have a problem in understanding what recv()/recvfrom() return from an non-blockig UDP socket. A bit more specific and compared to TCP (please correct me if I'm wrong): A blocking socket (either ...
4
votes
3answers
1k views

Non-Blocking method for parsing (streaming) XML in python

I have an XML document coming in over a socket that I need to parse and react to on the fly (ie parsing a partial tree). What I'd like is a non blocking method of doing so, so that I can do other ...
3
votes
2answers
147 views

How to run async / non-blocking MySQL queries in Play framework?

Just starting out on Play. The documentation talks about how Play can be run asynchronously. But how to run MySQL queries when running Play asynchronously? Normal MySQL queries are blocking, right? ...
3
votes
2answers
113 views

C select() timeout STDIN single char (no ENTER)

I want to be able to use select() to work with entering a single char (no ENTER) from STDIN. So, when a user press a single key, select() should return immediately, not waiting for the user to hit ...
3
votes
2answers
130 views

How can I implement a request-response protocol without blocking while awaiting response?

I need to implement an application that is simultaneously communicating with multiple clients using a (bidirectional) request-response protocol. Previously I have implemented this using two dedicated ...
3
votes
3answers
297 views

Why does this javascript block in Node.js?

I have the following simple http server using Node.js: var http = require('http'); var server = http.createServer(function(req, res) { var counter = 0; for(var i = 1; i <= 30; i++) { ...
3
votes
2answers
186 views

Javascript non-blocking scripts, why don't simply put all scripts before </body> tag?

In order to avoid javascript to block webpage rendering, can't we just put all all our JS files/code to be loaded/executed simply before the closing </body> tag? All JS files and code would be ...
3
votes
3answers
161 views

Is message passing via channels in go guaranteed to be non-blocking?

In order to assess whether go is a possible option for an audio/video application, I would like to know whether message passing in go satisfies any non-blocking progress guarantees (being ...
3
votes
3answers
359 views

Python: Non-blocking socket or Asynchronos I/O

I am new to python and currently have to write a python socket to be run as a script that communicates with a device over TCP/IP (a weather station). The device acts as the Server Side (listening over ...

1 2 3 4 5 7