4

我正在阅读这里的多处理教程:http: //pymotw.com/2/multiprocessing/basics.html

我写了下面的脚本作为练习。该脚本似乎正在运行,我确实看到在 taskmgr 中运行了 5 个新的 python 进程。但是,我的打印语句输出了多次搜索的同一个文件夹。

我怀疑我不是在不同进程之间拆分工作,而是给每个进程整个工作负载。我很确定我做错了什么并且效率低下。有人可以指出我的错误吗?

到目前为止我所拥有的:

def email_finder(msg_id):
    for folder in os.listdir(sample_path):
        print "Searching through folder: ", folder
        folder_path = sample_path + '\\' + folder
        for file in os.listdir(os.listdir(folder_path)):
            if file.endswith('.eml'):
                file_path = folder_path + '\\' + file
                email_obj = email.message_from_file(open(file_path))
                if msg_id in email_obj.as_string().lower()
                    shutil.copy(file_path, tmp_path + '\\' + file)
                    return 'Found: ', file_path
    else:
        return 'Not Found!'

def worker():
    msg_ids = cur.execute("select msg_id from my_table").fetchall()
    for i in msg_ids:
        msg_id = i[0].encode('ascii')
        if msg_id != '':
            email_finder(msg_id)
    return

if __name__ == '__main__':
    jobs = []
    for i in range(5):
        p = multiprocessing.Process(target=worker)
        jobs.append(p)
        p.start()
4

1 回答 1

5

您的每个子流程都有自己的光标,因此会遍历整个 ID 集。

您需要msg_ids从数据库中读取一次,然后将其生成到子进程,而不是让每个子进程自行查询。

于 2013-03-10T16:54:44.580 回答