gpt4 book ai didi

python - peewee PooledMySQL数据库有缓存或缓冲区吗?

转载 作者:行者123 更新时间:2023-11-29 11:46:56 26 4
gpt4 key购买 nike

我创建了一个像这样的mysql连接池:

database = PooledMySQLDatabase('test', max_connections=10,
**{'host': 'localhost', 'port': 3306,
'user': 'root', 'password': ''})


class BaseModel(Model):
class Meta:
database = database



class Tb1(BaseModel):
point_id = PrimaryKeyField()

class Meta:
db_table = 'tb1'

但是,当我在数据库中手动插入记录或删除记录时,在我的程序中,选择结果没有改变。

while True:
database.connect()
tb_list = Tb1.select()
print(len(tb_list))
database.close()
import time
time.sleep(2)

当我将 PooledMySQLDatabase 替换为 MySQLDatabase 时,结果正常。在我的项目中,我想使用多线程,所以我需要创建一个mysql池。

非常感谢

最佳答案

没有缓存,没有缓冲区。它与事务管理有关。只要确保您在事务中运行语句就应该没问题。

多线程应用程序不需要 peewee 的池。即使没有池,Peewee 也能正确管理每个线程的连接。

关于python - peewee PooledMySQL数据库有缓存或缓冲区吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34764266/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com