我閱讀了關於IBM developer sources中的線程並找到以下示例。瞭解Python中的線程:如何告訴`run()`返回已處理的數據?
總的來說,我瞭解這裏發生了什麼,除了一個重要的事情。這項工作似乎是在run()
函數中完成的。在這個例子中run()
只打印一條線和信號到隊列中,表明工作已經完成。
如果我不得不返回一些處理過的數據?我想過把它緩存在一個全局變量中,並在稍後訪問它,但這似乎不是正確的方法。
有什麼建議?
也許我應該clearify:我的直覺告訴我self.queue.task_done()
之後添加return processed_data
到run()
,但我想不通的地方,以趕上回報,因爲它不是明顯,我在那裏run()
被調用。
#!/usr/bin/env python
import Queue
import threading
import urllib2
import time
hosts = ["http://yahoo.com", "http://google.com", "http://amazon.com",
"http://ibm.com", "http://apple.com"]
queue = Queue.Queue()
class ThreadUrl(threading.Thread):
"""Threaded Url Grab"""
def __init__(self, queue):
threading.Thread.__init__(self)
self.queue = queue
def run(self):
while True:
#grabs host from queue
host = self.queue.get()
#grabs urls of hosts and prints first 1024 bytes of page
url = urllib2.urlopen(host)
print url.read(1024)
#signals to queue job is done
self.queue.task_done()
start = time.time()
def main():
#spawn a pool of threads, and pass them queue instance
for i in range(5):
t = ThreadUrl(queue)
t.setDaemon(True)
t.start()
#populate queue with data
for host in hosts:
queue.put(host)
#wait on the queue until everything has been processed
queue.join()
main()
print "Elapsed Time: %s" % (time.time() - start)