Redis’ Virtual Memory Specifications Draft
Posted: March 25th, 2010 | Author: Adam | Filed under: Database, NoSQL, Redis | 2 Comments »Salvatore has posted “part 1″ of the internals of Redis’ Virtual Memory subsystem today. Below is the intro with the link to full documentation on Google Code below.
This document details the internals of the Redis Virtual Memory subsystem. The intended audience is not the final user but programmers willing to understand or modify the Virtual Memory implementation.
Keys vs Values: what is swapped out?
The goal of the VM subsystem is to free memory transferring Redis Objects from memory to disk. This is a very generic command, but specifically, Redis transfers only objects associated with values. In order to understand better this concept we’ll show, using the DEBUG command, how a key holding a value looks from the point of view of the Redis internals.
I shouldn’t be surprizing so hard at that.
Hey Adam,
I especially liked the part where you said “The intended audience is not the final user but programmers willing to understand or modify the Virtual-Memory implementation” because that is where many folks get confused… trying to do more than they know. Informing them right in the beginning will quickly let you capture the programmers that you are after.
Tim Couvillion
Program Customs