Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

It was suggested to me that I use a database to help prune out duplicate entries (based on 12-digit id numbers) in data I'm processing. I had previously been using a hash, but it starts to choke by 55 million entries. So I fired up DBI::SQLite to give it a try. And I was shocked by what I found.

I simply must have something wrong, because inserting into an sqlite database seems to be occurring at a rate of only 5 per second for me; just writing raw to hashes was going between 11,000 and 20,000 per second. This is unbelievably, unusably slow. What is going on?

#!/usr/bin/perl use strict; use warnings; use v5.16.0; use lib 'lib'; use DBI; use Carp 'croak'; my $dbh = db_handle('vals.db'); my $sql_table = <<"SQL"; CREATE TABLE IF NOT EXISTS data ( klout INTEGER ); SQL $dbh->do($sql_table); my $sql_insert_statement = "INSERT INTO data (klout) VALUES (?)"; my $sth = $dbh->prepare($sql_insert_statement); my $start = time; foreach (1..1000) { $sth->execute($_); } say "Total time: ", (time - $start); # 180 seconds sub db_handle { my $db_file = shift or croak "db_handle() requires a database name"; no warnings 'once'; return DBI->connect ( "dbi:SQLite:dbname=$db_file", "", #no username "", #no password { RaiseError => 1, PrintError => 0, AutoCommit => 1 }, ) or die $DBH::errstr; }

In reply to DBI::SQLite slowness by Endless

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 10:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found