1.1.3 • Published 6 years ago
catbox-fallback v1.1.3
Catbox Fallback
Catbox engine allowing you to use two engines, a primary and a secondary, and if the primary is down, the secondary takes over. After that, if the primary becomes ready it's gonna be used.
Lead maintainer: Simon Lévesque and Edouard Demotes-Mainard
Options
primaryengineA Catbox engine of any kind.optionsThe options you want to pass to the engine.timeout(number) A timeout (in ms) for the primary engine. After this timeout, the primary will be considered as unhealthy and we will use the secondary.recoveryDelay(number) If defined and if the primary fails, it will wait this delay then try to recover the primary.
secondaryengineA Catbox engine of any kind.optionsThe options you want to pass to the engine.
Examples
Basic usage, Redis with Memory as fallback.
const server = Hapi.server({
port: 3000,
host: 'localhost',
cache: {
name: 'fallback',
provider: {
constructor: require('catbox-fallback'),
options: {
primary: {
engine: require('catbox-redis'),
options: {
partition: 'example',
host: '127.0.0.1',
port: 6379
},
timeout: 5000,
recoveryDelay: 30000
},
secondary: {
engine: require('catbox-memory')
}
}
}
}
});For more details, see examples.