(Using Delphi 2010 + latest SQLite in WAL mode)
I'm using DISQLite (Delphi port of SQLite) with my multi-threading client application (yet to be released, so I can change the DB engine if I really have to)
My profiler clearly says it's a stupid decision, I tracked this down to 2-3 very simple SQL statements that flies when executed in a single-threaded app, but because threads locking/waiting (SQLite really doesn't perform well with multiple threads trying to write simultaneously)
I did my best to optimize my code / avoid bottlenecks, but after several weeks of hard work, I wonder now if it's not just easier to dump SQLite & choose a different DB engine(?)
My requirements are:
- ACID
- Very good simultaneous reading / writing (record level) support
- (Very) Fast & stable DB engine
- B-Tree
- Delphi 2010 support
I'm only using basic INSERT/UPDATE/DELETE commands with indexes, nothing fancy. So my SQL requirements are relatively basic (I don't need join or other "more advanced" sql stuff).
I'm also open to NQL solutions, as long as it support the requirements mentioned above.
My research lead to Berkley DB, which is, if I understood correctly, a modified version of SQLite with concurrent writing support, but the problem is it's not really for delphi.
I also read about Kyoto Cabinet, but then again, no delphi support :(
Any suggestion would be more than welcome,
Thanks!