You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const client = new Redis.Cluster(redisConnection, {
redisOptions: {
keyPrefix: 'eran:'
},
keyPrefix: 'eran:' // known issue that keyPrefix inside redisOptions is not working
})
client.call('set', 'x1', '1') -> will save 'eran:x1' with value '1'
client.call('SET', 'x1', '1') -> will save 'x1' with value '1'
TNX
The text was updated successfully, but these errors were encountered:
const client = new Redis.Cluster(redisConnection, {
redisOptions: {
keyPrefix: 'eran:'
},
keyPrefix: 'eran:' // known issue that keyPrefix inside redisOptions is not working
})
client.call('set', 'x1', '1') -> will save 'eran:x1' with value '1'
client.call('SET', 'x1', '1') -> will save 'x1' with value '1'
TNX
The text was updated successfully, but these errors were encountered: