Heim  >  Fragen und Antworten  >  Hauptteil

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?

天蓬老师天蓬老师2741 Tage vor703

Antworte allen(3)Ich werde antworten

  • 天蓬老师

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

    似乎是这个原因,函数装饰器不可pickle
    可以看看这个:
    装饰器与多进程以及Pickle

    • 扩展: Python MultiProcessing 使用心得

    Antwort
    0
  • 阿神

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

    我已经找到原因了:

    Traceback (most recent call last):
      File "wrapper.py", line 30, in <module>
        print ret.get()
      File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/pool.py", line 567, in get
        raise self._value
    cPickle.PicklingError: Can't pickle <type 'function'>: attribute lookup __builtin__.function failed
    

    子进程异常.

    Antwort
    0
  • PHP中文网

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

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

    Antwort
    0
  • StornierenAntwort