http://qs1969.pair.com?node_id=1081324


in reply to Re: Unexpected and uncatchable database corruption errors using DBD::SQLite & Parallel::ForkManager
in thread Unexpected and uncatchable database corruption errors using DBD::SQLite & Parallel::ForkManager

The SQLite documentation indicates that it can handle multiple simultaneous read connections. It only allows one writer at a time, locking the database during the write. If it cannot lock the database, it returns a "database is locked" error.

I'm testing this on a local disk (no NFS shenanigans involved), so the locking mechanism should work.