|
|
|
|
|
by rarestnews
6280 days ago
|
|
The most popular is BerkeleyDB and it's license isn't very friendly for commercial apps. Rest of what I tested are really slow. Also, most of DBM-style databases suffer from same flaws as disk-based SQLite - they don't use memory cache. I prefer to have slight chance of losing my data, but having 10-100 times faster performance on most queries (RAM vs HDD is often 1:100), rather than 100% consistency and slowness. Last, but not least, hash-style mySQL is easily distributed and cached. |
|