in reply to Re^2: fast simple DB (sqlite?) skeleton?
in thread fast simple DB (sqlite?) skeleton?
Let's presume that I wanted to mimick the code of my berkeley data base, though, in which I first look up whether the key already exists, and then I combine values into the same key if it is already there. in this case, was my original assessment of sqlite's speed correct? that is, I first need to insert every record, so that I can look up the next record.
if this is true, then it seems to me that the berkeley data base would be a lot faster for situations in which "bulk inserts" are not possible, but sqlite is much faster for situations in which it is.
I have not installed mysql, but I wonder if someone could tell me how fast/slow the same code in mysql would be.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: fast simple DB (sqlite?) skeleton?
by pmqs (Friar) on Jan 28, 2010 at 11:49 UTC | |
by WizardOfUz (Friar) on Jan 28, 2010 at 13:11 UTC | |
by pmqs (Friar) on Jan 29, 2010 at 10:11 UTC | |
|
Re^4: fast simple DB (sqlite?) skeleton?
by pmqs (Friar) on Jan 29, 2010 at 09:57 UTC |