Kal*_*llz 5 python singleton metaclass multiprocessing python-2.7
我使用Metaclass创建 Singleton 类,它在多线程中运行良好,并且只创建 MySingleton 类的一个实例,但在多处理中,它总是创建新实例
import multiprocessing
class SingletonType(type):
# meta class for making a class singleton
def __call__(cls, *args, **kwargs):
try:
return cls.__instance
except AttributeError:
cls.__instance = super(SingletonType, cls).__call__(*args, **kwargs)
return cls.__instance
class MySingleton(object):
# singleton class
__metaclass__ = SingletonType
def __init__(*args,**kwargs):
print "init called"
def task():
# create singleton class instance
a = MySingleton()
# create two process
pro_1 = multiprocessing.Process(target=task)
pro_2 = multiprocessing.Process(target=task)
# start process
pro_1.start()
pro_2.start()
Run Code Online (Sandbox Code Playgroud)
我的输出:
init called
init called
Run Code Online (Sandbox Code Playgroud)
我只需要调用MySingleton 类的init方法一次
您的每个子进程都运行自己的 Python 解释器实例,因此SingletonType一个进程中的进程不会与另一个进程中的进程共享其状态。这意味着仅存在于您的一个进程中的真正单例将没有多大用处,因为您将无法在其他进程中使用它:而您可以在进程之间手动共享数据,但仅限于基本的数据类型(例如字典和列表)。
不依赖于单例,只需在进程之间共享底层数据:
#!/usr/bin/env python3
import multiprocessing
import os
def log(s):
print('{}: {}'.format(os.getpid(), s))
class PseudoSingleton(object):
def __init__(*args,**kwargs):
if not shared_state:
log('Initializating shared state')
with shared_state_lock:
shared_state['x'] = 1
shared_state['y'] = 2
log('Shared state initialized')
else:
log('Shared state was already initalized: {}'.format(shared_state))
def task():
a = PseudoSingleton()
if __name__ == '__main__':
# We need the __main__ guard so that this part is only executed in
# the parent
log('Communication setup')
shared_state = multiprocessing.Manager().dict()
shared_state_lock = multiprocessing.Lock()
# create two process
log('Start child processes')
pro_1 = multiprocessing.Process(target=task)
pro_2 = multiprocessing.Process(target=task)
pro_1.start()
pro_2.start()
# Wait until processes have finished
# See /sf/answers/1781954611/
log('Wait for children')
pro_1.join()
pro_2.join()
log('Done')
Run Code Online (Sandbox Code Playgroud)
这打印
16194: Communication setup
16194: Start child processes
16194: Wait for children
16200: Initializating shared state
16200: Shared state initialized
16201: Shared state was already initalized: {'x': 1, 'y': 2}
16194: Done
Run Code Online (Sandbox Code Playgroud)
但是,根据您的问题设置,使用其他进程间通信机制可能会有更好的解决方案。例如,Queue类通常非常有用。