|
|
|
|
|
by looklikean
1868 days ago
|
|
Combining data-at-rest with some slim index structure coupled with a common access method (like HTTP) was the idea behind a tool a key-value store for JSON I once wrote: https://github.com/miku/microblob I first thought of building a custom index structure, but found that I did not need everything in memory all the time. Using an embedded leveldb works just fine. |
|