in reply to Implementing a buffered read-and-insert algorithm
I would check if your database supports delayed inserts. That will allow you to do your buffered read and the a sort of bufferd insert. I'm not sure what that will do as far as disk reads and writes, but i've had great success with this startegy in Database->Database transfers where the insert time was holding me up. (By great success I mean from 60+seconds per table to 5-10 seconds per table)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Implementing a buffered read-and-insert algorithm
by radiantmatrix (Parson) on Dec 13, 2004 at 21:58 UTC | |
by eric256 (Parson) on Dec 13, 2004 at 22:09 UTC |