Created
April 3, 2019 19:33
-
-
Save midnightcodr/b66e6f3ed6960e3f5ca9cab0c4d1027f to your computer and use it in GitHub Desktop.
hapijs-18-catbox-example.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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