sivann / itdb

IT Items Database
http://www.sivann.gr/software/itdb/
GNU General Public License v3.0
154 stars 105 forks source link

Issue with ext4 and sqlite #36

Closed Kolesar closed 9 years ago

Kolesar commented 9 years ago

SQLite is very slow on ext4, so please add follow line for speed up:

$dbh->exec("pragma synchronous = off;");

sivann commented 9 years ago

If you turn it off data will not be saved to disk when you click save, but asynchronously, at a later time chosen by the OS. This can be very unsafe. Why do you say it is slow, it is fast enough in my experience. Perhaps your disk is very loaded, use "iostat -xm 2" or iotop to see which process is slowing down your drive.