|
|
|
|
|
by gojomo
5440 days ago
|
|
An interesting development a while back that I'm surprised hasn't received more attention was Oracle's release of a SQLite-based interface to BDB: http://www.oracle.com/technetwork/database/berkeleydb/overvi... It's essentially drop-in compatible with SQLite, but with added concurrency and speed for most operations. (The concurrency addresses a major issue usually keeping SQLite as a prototyping/single-user-only option in web development.) With LevelDB as a BSD-licensed alternative to BDB, I wonder: (1) How would the LevelDB-vs-SQLite benchmarks change against SQLite+BDB backend? (2) Could a SQLite fork with a LevelDB backend get a performance boost? |
|