찾다

 >  Q&A  >  본문

python - 当装饰器遇到multiprocessing, 出了点bug.

from multiprocessing import Pool

def with_app_context(need_new=False):
    def magic(func):
        app_store = {}
        def wrapper(*args, **kwargs):
            print 'inside', args, kwargs
            result = func(*args, **kwargs)
            return result

        return wrapper

    return magic


@with_app_context(need_new=True)
def func(k1, k2):
    print k1, k2
    return 'ret'


pool = Pool(processes=1)
pool.apply_async(func, args=('hi', 'yo'))
pool.close()
pool.join()

什么结果都不输出, 请问哪有bug?

天蓬老师天蓬老师2794일 전739

모든 응답(3)나는 대답할 것이다

  • 天蓬老师

    天蓬老师2017-04-18 10:32:27

    이런 이유로 함수 데코레이터를 피클할 수 없는 것 같습니다.
    이것을 살펴보세요:
    데코레이터와 다중 프로세스와 피클

    • 확장: Python MultiProcessing 사용 경험

    회신하다
    0
  • 阿神

    阿神2017-04-18 10:32:27

    이유를 찾았습니다:

    으아악

    자식 프로세스가 비정상입니다.

    회신하다
    0
  • PHP中文网

    PHP中文网2017-04-18 10:32:27

    http://stackoverflow.com/ques...

    회신하다
    0
  • 취소회신하다