Archive for December, 2010

Building High Speed Cache

Recently while developing a caching tool capable of providing access to millions of records in sub-seconds, we analysed some of the existing best practices. (1) One choice is MySql native memory cache for avoiding GC-pauses. MySQL InnoDB storage engine’s dictionary cache provides blazing fast data acceess. On demand, data blocks are read from disk and [...]