Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Step by step workshop building an AFIO-based key-value store

1. World's simplest named blob store in STL iostreams
2. World's simplest named blob store in AFIO (synchronous)
3. World's simplest named blob store in AFIO (asynchronous)
The problems with this naive design
4. Second attempt at a key-value store: How to implement atomic value updates and therefore Atomicity, Consistency, Isolation and Durability
The performance of and problems with this second generation design
5. Third attempt at a key-value store: Thinking like a filing system
The final named blob store design
The performance of and problems with this third generation design

PrevUpHomeNext