Skip to content

Instantly share code, notes, and snippets.

@midnightcodr
Created April 3, 2019 19:33
Show Gist options
  • Save midnightcodr/b66e6f3ed6960e3f5ca9cab0c4d1027f to your computer and use it in GitHub Desktop.
Save midnightcodr/b66e6f3ed6960e3f5ca9cab0c4d1027f to your computer and use it in GitHub Desktop.
hapijs-18-catbox-example.js
serverOptions.cache = [
{
name: 'redisCache',
provider: {
constructor: require('catbox-redis'),
options: {
url: process.env.REDIS_URL
}
}
}
]
// while in v17, the following syntax is used
/*
serverOptions.cache = [
{
name: 'redisCache',
engine: require('catbox-redis'),
url: process.env.REDIS_URL
}
]
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment