in reply to Re: Threads and DBD::SQLite?
in thread Threads and DBD::SQLite?
Ah, thank you! The exact string "cache=shared" gave some Google hits. This was fixed for DBD::SQLite this summer, it seems.
For a start, retrieving a given number of records from a single thread&connection is nearly 2 orders of magnitude quicker than retrieving those same records via a connection made via a single connection in a separate thread.
Two orders of magnitude slower using threads?! Sigh. Does it help to set "read uncommitted" on? (You do that in the connect string too?)
A few questions: What OS are you targeting? What does your data (schema) look like? What do your queries look like?
Honking big, multiprocessor Linux servers with Oracle and more memory than you can shake a stick at. :-) I'd like to replace an old C hack using a few GBytes of RAM for querying some subsets of a few tables really quick (quite a lot of work is required for some queries). The queries are data structures easily converted to SQL.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Threads and DBD::SQLite?
by BrowserUk (Patriarch) on Dec 15, 2013 at 16:53 UTC | |
by erix (Prior) on Dec 16, 2013 at 00:39 UTC | |
by BrowserUk (Patriarch) on Dec 16, 2013 at 10:50 UTC | |
by erix (Prior) on Dec 16, 2013 at 23:41 UTC | |
by BrowserUk (Patriarch) on Dec 17, 2013 at 08:35 UTC | |
by BrowserUk (Patriarch) on Dec 17, 2013 at 06:40 UTC | |
| |
by BerntB (Deacon) on Dec 17, 2013 at 02:35 UTC |