Open penberg opened 4 months ago
Limbo uses 14x the CPU:
penberg@vonneumann limbo % /usr/bin/time target/release/limbo testing/testing.db "SELECT id FROM users ORDER BY zipcode" 0,15 real 0,14 user 0,01 sys
in comparison to SQLite:
penberg@vonneumann limbo % /usr/bin/time sqlite3 testing/testing.db "SELECT id FROM users ORDER BY zipcode" 0,05 real 0,01 user 0,01 sys
Likely https://github.com/penberg/limbo/issues/203
Limbo uses 14x the CPU:
in comparison to SQLite: