Subject: | Documentation error for preventing fsync |
DBD::SQLite's documentation suggests using the following:
PRAGMA default_synchronous = OFF
However, when I run my application with this I still notice it blocking
on disk.
SQLite's documentation does not mention this setting:
http://www.sqlite.org/pragma.html#syntax
However, it does mention "synchronous". My application stops blocking
on disk when I call:
PRAGMA synchronous = OFF
Maybe SQLite had different syntax in the past: I suggest updating
DBD::SQLite's documention to use SQLite's currently documented syntax.
Thanks,
Tom