in reply to Re^2: Thread local variables in Thread::Pool::Simple
in thread Thread local variables in Thread::Pool::Simple

As ikegami alludes to in a later post, SQLite has some issues with concurrency. There is no 'row-locking', or even 'table-locking'. Any thread that begins a write locks out all others until it is done. This would be the same in multi-thread vs multi-process.
  • Comment on Re^3: Thread local variables in Thread::Pool::Simple