Team,
i am trying to set config of redis at runtime using NODE js application as below.
let setConfig = await this.cacheConnection.config("set", "notify-keyspace-events", "Ex"); let setConfig = await this.cacheConnection.config("SET", "notify-keyspace-events", "Ex");
Above code is always returning false to me.
I am using redis node module in my application.All other commands like getAsync,SetAsync are working perfectly fine for me. let result = await this.cacheConnection.getAsync("keyname");
Any suggestion here would be great.