Asynchronous file io in eventlet (aka nonthread blocking read)

Asynchronous file io in eventlet (aka non-thread blocking read) « Arg and gah and ap and pa

Asynchronous file io in eventlet (aka non-thread blocking read)

February 22, 2010 at 7:26 pm
1 comment

I spent a little while trying to get this to work. I ended up using the following approach that worked quite well

i) Create a thread pool

ii) Use this thread pool to to perform blocking file io

and return this result to your thread

iii) Do something with the result

I do quite like the run-this-on-another-thread-without-blocking-this-thread-and-wait-for-the-result” operation.

Below is some (tested) code for eventlet 0.9.4.

import sys
import eventlet.tpool

def controller():
	while True:
		line = eventlet.tpool.execute(sys.stdin.readline)
		eventlet.spawn(talker, line.strip())

def talker(msg):
	while True:
		eventlet.sleep(1)
		print msg

eventlet.spawn(controller).wait()
原文地址:https://www.cnblogs.com/lexus/p/2476721.html