Unobtrusively handles http cache based route and params
npm install cacheme

A simple but robust Http cache helper
```
npm install cacheme --save
`
{
"main.strategy": {
"priority": 1, // lower is more important
"rules": [
{
"method": "get, post, put, del, case insensitive",
"path":"regex",
"cache": {
override: 'public, smax-age: 40',
proxy: 'public',
unit: 'second, minute, hour, month, year',
duration: 60
}
}
]
}
}
`
HttpCache can alos be use directly if you don't need to define strategy based on path
```
"cache": {
override: 'public, smax-age: 40',
proxy: 'public',
unit: 'second, minute, hour, month, year',
duration: 60,
noRevalidate: true || false // this will erase Etag or Last-Modified hedader avoinding 304, default is false
}