1

我正计划将我的项目更改为多进程,以便我可以使用更多资源,这是我的数据库模块代码

import pymysql
import threading
class tdb:
    def __init__(self):
        self.totalEffected = 0
        pass

    def start(self):
        self.conn = pymysql.connect(host='xxxx', port=3306, user='root', passwd='xxxx', db='xxxx', charset='utf8')

    def select(self,sql,args=None):
        cur = self.conn.cursor()
        cur.execute(sql,args)
        result = cur.fetchall()
        cur.close()
        return result

    def execute(self,sql,args=None):
        cur = self.conn.cursor()
        result = cur.execute(sql,args)
        cur.close()
        self.totalEffected+=result
        return result

#    def __commit(self,callback):

    def __commitCallback(self,result):
        print('commit result:',result)
        self.conn.close()

    def errorc(self,*args):
        print('error')

    def end(self):
#        init()
#        p.apply_async(self.conn.commit, callback=self.__commitCallback,error_callback=self.errorc)
        if self.totalEffected!=0:
            thread = threading.Thread(target=self.t)
            thread.start()
        else:
            self.conn.close()

#        p.apply(self.conn.commit)
#        self.conn.close()
#        print('result:' ,result.get())
    def t(self):
        self.conn.commit()
        self.conn.close()

真正需要处理的唯一操作是 conn.commit(),我使用线程来执行它,所以我可以立即返回。我曾经使用 Pool.apply_async(),但它没有回调,所以我想知道如何让其他进程调用我,所以我不必花时间等待接收。

4

0 回答 0