storage/sqlite/sqlite-storage.go | 5 ++++- diff --git a/storage/sqlite/sqlite-storage.go b/storage/sqlite/sqlite-storage.go index f6854791763f293fe586c8c5cd3f45979bcd3fb5..ed9aefb3077250d3e3594c0e05a24f1396ee50dc 100644 --- a/storage/sqlite/sqlite-storage.go +++ b/storage/sqlite/sqlite-storage.go @@ -299,7 +299,10 @@ func initDatabase(conn conn, opts InitDbOpts) (err error) { if !opts.DontInitSchema { if opts.PageSize == 0 { - opts.PageSize = 1 << 14 + // There doesn't seem to be an optimal size. I did try with the standard chunk size, but + // the difference is not convincing. + + //opts.PageSize = 1 << 14 } err = InitSchema(conn, opts.PageSize, !opts.NoTriggers) if err != nil {