Parallelität – die richtige Haltung für Python-Multiprozess + Coroutine?
给我你的怀抱
给我你的怀抱 2017-07-05 10:34:33
0
1
981

Was ist die richtige Haltung von Python-Multiprozess + Coroutine? Ist der folgende Code ein Beispiel für die Kombination von Multiprozess und Coroutine?

from multiprocessing import Pool
import gevent
def test1():
    print (12)
    gevent.sleep(1)
    print (34)
def test2():
    print (56)
    gevent.sleep(1)
    print (78)
def coroutine():
    gevent.joinall([
        gevent.spawn(test1),
        gevent.spawn(test2)
    ])
if __name__=="__main__":
    p=Pool()
    for i in range(3):
        p.apply_async(coroutine,args=())
    p.close()
    p.join()
给我你的怀抱
给我你的怀抱

Antworte allen(1)
刘奇

加个补丁就算完整了.

from gevent import monkey; monkey.patch_all()
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!