I was wondering if anyone has tried to replace SQLIte in any of the Go sqlite drivers with the "drop-in replacement" of Oracle's
If yes, have you noticed any problems or experienced improved performance?
but no comments on performance.
The reason I am interested is that SQLIte - as amazingingly good as it is - does not scale well in the area of concurrent writes, whereas Berkeley DB SQL does.
For some use cases where concurrent write performance is limited by SQLite, this would make a SQLite-ish solution via BDB SQL more viable.
Some more references:
Of course, the documents suggesting BDB better than SQLite for this use case come from the vendor, so caveat emptor.
I would also like to see some of the SQL performance tests run against both of these to compare them (perhaps from http://www.tpc.org/ ? I don't know much about these...) I also do not know how other important things compare, like query planning/optimization, which may be stronger / more mature in SQLite.
Thanks,
Glen