https://gist.github.com/hossam1231/1072b1db61ccda59d6bf75a6260ede66
hi there here is a gist to my attempts to select a redis index using the javascript code where the redis connection object is initialized
11 messages · Page 1 of 1 (latest)
https://gist.github.com/hossam1231/1072b1db61ccda59d6bf75a6260ede66
hi there here is a gist to my attempts to select a redis index using the javascript code where the redis connection object is initialized
around line 170
Around line 38
async connect() {
const cacheOptions = { ...this.connection.options.cache, db: 1 };
if (this.clientType === "redis") {
this.client = this.redis.createClient({
...(cacheOptions === null || cacheOptions === void 0 ? void 0 : cacheOptions.options),
legacyMode: true,
});```
ive even tried asinging to the object on line 24
im using this tool to check what index is being used
5 hours?