用的 sqlalchemy ,每次 insert 慢的离谱~
1
uglyer 2022-10-10 15:42:42 +08:00 1
可以把具体的表结构以及插入记录和执行时长贴出来具体分析一下。
设置 PRAGMA synchronous = OFF 和 PRAGMA journal_mode=WAL 后,我本机测试(m1) sqlite 单表连续插入每秒能到 6 万多条 CREATE TABLE foo (id integer not null primary key, name text); INSERT INTO foo(name) VALUES(?) 另外,使用预编译语句也能提升一些性能。 |