Skip to content

Instantly share code, notes, and snippets.

View numero-trey's full-sized avatar

Trey Chandler numero-trey

  • The Walt Disney Company
  • Orlando
View GitHub Profile
@numero-trey
numero-trey / quick_cache.js
Created February 3, 2013 15:10
Quick and easy expiring cache
var cacheData = {},
ttl = 60000; // default TTL is 60 seconds
// Set the TTL
exports.setTTL = function(val) { ttl = val; };
// Set cache value
exports.set = function(key, value) {