VladRodionov / bigbase

BigBase - read optimized, fully HBase-compatible, NoSQL Data Store
GNU Affero General Public License v3.0
9 stars 1 forks source link

Row cache: Implement merge cached rows on update #12

Open VladRodionov opened 10 years ago

VladRodionov commented 10 years ago

Row cache caches row:col entirely in memory and serves as L1 cache in a multilevel caching architecture. The current limitation is cached object gets purged from cache every time 'row:col' is updated. We could merge new values with existing cached one on update.

VladRodionov commented 10 years ago

Not sure if we need this. It seems good for Increment/Append ops.