oetiker / rrdtool-2.x

RRDtool 2.x - The Time Series Database
86 stars 8 forks source link

integrated caching functionality #29

Open oetiker opened 10 years ago

oetiker commented 10 years ago

caching happens before data is written to disk, after all the processing

luqasz commented 10 years ago

do you plan to use caching for reads from rrd database as well ? this may offload frequently viewed graphs.

oetiker commented 10 years ago

caching reads is done perfectly well by the os, if you hand it enough ram ... no need for rrdtool to cache again. BUT for accessing data that has not been dumped to disk yet, the information would come from memory.

luqasz commented 10 years ago

ok thx for reply.