2015-03-23から1日間の記事一覧

sqliteではTransactionを明示的に書いて高速Insert

Node.js sqlite3: very slow bulk insertsnelsonslog.wordpress.com found the problem, I wasn’t using transactions right. See bottom. Simple solution for faster bulk inserts in sqlite3: do them with a transaction. とあって、 db.run("begin…