Skip to content

Instantly share code, notes, and snippets.

@mick
Created December 23, 2010 00:17
Show Gist options
  • Save mick/752353 to your computer and use it in GitHub Desktop.
Save mick/752353 to your computer and use it in GitHub Desktop.
simple cache
if((couchcache["popular-"+page])&&(couchcache["popular-"+page].timesaved > (Date.now() - 60000))){
res.send(couchcache["popular-"+page].docs);
}else{
//...get doc...
if(page < 10){
couchcache["popular-"+page]={"timesaved":Date.now(),"docs":docs};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment