NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
How's it look without disk caching? (Score:2)
Re:How's it look without disk caching? (Score:2)
Re:How's it look without disk caching? (Score:2)
Fork & Threads (Score:0)
Also, have you tried using Perl's threads to run concurrent queries? If you don't have a threaded Perl, there's always the "Inline" modules. :)
Just curious.
Re:Fork & Threads (Score:2)
I'm curious about all that stuff too, but it's hard to setup those sorts of tests. Well actually not *that* hard - I could just set it up under mod_perl, but I don't have that many hours in the day
Third party support (Score:1)
The next version of SPOPS, which will come out whenever I wake up -- I have a strict no-bleary-eyed CPAN release policy -- includes support for SQLite. (Oracle too, but let's keep on message.)
One thing I noticed is that SQLite doesn't seem to like table definitions with an explicit 'NULL' declaration. For instance, the following will fail:
CREATE TABLE testme (
id int not null primary key,
name varchar(20) null
)
with a DBD::SQLite::db do failed: near "null": syntax error at ...
Other tha
Re:Third party support (Score:2)
I've got a fix for some of them, but I'm still seeing slight leaks. I'm wondering if that's not in the underlying library though, since leaking 1 scalar per request would see more leakage than I've seen so far.
Re:Third party support (Score:1)