booty-cache
v0.0.1
Published
Dead sexy URL caching utility for Express/Connect
Downloads
1
Readme
booty
Like a pirate's treasure booty, not the dirty kind of booty.
What it does
Dynamically cache routes in express!
npm install "git://github.com/balderdashy/booty.git"
How to use with Express
cacheRoute = require('booty')
app.get('/', cacheRoute(60*60), function(req, res) {
res.send('This route is now cached for 3600 seconds!')
})
How to use with Sails
cacheRoute = require('booty')
var Controller = {
route: cacheRoute(60*60)(function(req, res) {
res.send('This route is now cached for 3600 seconds!')
})
}