-
Notifications
You must be signed in to change notification settings - Fork 62
Cluster-awareness #124
Copy link
Copy link
Open
Labels
supportQuestions, discussions, and general supportQuestions, discussions, and general support
Description
I am running hapi 20. Following the documentation, the following configuration works fine on a single-instance redis server.
const Hapi = require('hapi')
const CatboxRedis = require('@hapi/catbox-redis');
const server = new Hapi.Server({
cache : [
{
name: 'my_cache',
provider: {
constructor: CatboxRedis,
options: {
partition : 'test',
host: 127.0.0.1,
port: 6379,
db: 0,
}
}
}
]
});
Is this configuration also cluster-aware (does it get redirected)? Or do I need to change the configuration to interface with a cluster?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
supportQuestions, discussions, and general supportQuestions, discussions, and general support