ich habe ein paar Speed-Tests bei Datenbanken gemacht (alle Versionen unter Debian Sid), in den Foren liest man überall, dass postgres so schnell sei, aber das kann ich absolut nicht nachvollziehen, hier ein paar kleine Tests, wo per Textdatei Datensätze über das jeweilige Console-Tool gepumpt werden:
Code: Alles auswählen
(sqlite)
Adding 20000 4.70 usr 9.04 sys 18.63 tot
Inserting 2000 0.48 usr 0.81 sys 1.33 tot
Replacing 2000 0.34 usr 0.69 sys 1.80 tot
Updating 2000 29.43 usr 12.45 sys 44.69 tot
(sqlite (PRAGMA default_synchronous = NORMAL;))
Adding 20000 5.23 usr 9.55 sys 432.93 tot
Inserting 2000 0.53 usr 0.93 sys 46.43 tot
Replacing 2000 0.38 usr 0.61 sys 33.58 tot
Updating 2000 29.19 usr 13.40 sys 62.48 tot
(mysql)
Adding 20000 0.26 usr 0.23 sys 3.33 tot
Inserting 2000 0.02 usr 0.02 sys 0.43 tot
Replacing 2000 0.03 usr 0.03 sys 0.65 tot
Updating 2000 0.10 usr 0.04 sys 13.82 tot
(sapdb)
Adding 20000 1.23 usr 1.68 sys 7.77 tot
Inserting 2000 0.11 usr 0.19 sys 0.75 tot
Updating 2000 (with indices) 0.09 usr 0.31 sys 0.54 tot
Updating 2000 (without indices) 0.17 usr 0.22 sys 0.49 tot
(postgres (fsync = off))
Adding 20000 0.65 usr 0.25 sys 9.46 tot
Inserting 2000 0.04 usr 0.04 sys 0.73 tot
Updating 2000 (with indices) 0.09 usr 0.09 sys 26.54 tot
Updating 2000 (without indices) 0.08 usr 0.03 sys 25.54 tot
(postgres standard (fsync = true))
Adding 20000 0.57 usr 0.33 sys 43.42 tot
Inserting 2000 0.11 usr 0.05 sys 4.82 tot
Updating 2000 (with indices) 0.05 usr 0.02 sys 27.43 tot
Updating 2000 (without indices) 0.05 usr 0.03 sys 26.30 tot
Weiss Jemand ein paar Tuning-Tips für postgres oder lahmt das wirklich so sehr? Soll Version 8 viel schneller sein als 7.4.7 ? Any ideas are welcome !
Grüsse, mistersixt.