最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How fix arguments error of HSET in Redis? - Stack Overflow

programmeradmin0浏览0评论

I am implementing a cacheing layer in NodeJS and MongoDB using Redis. I am fairly new to Redis. So I am having trouble where I am trying to automatically clear cache after a given timing. The error I am getting

ReplyError: ERR wrong number of arguments for 'hset' mand

This is my code block

mongoose.Query.prototype.exec = async function() {

  const key = JSON.stringify(
      Object.assign({}, this.getQuery(), {collection: 
      this.mongooseCollection.name})
  );
  const cachedValue = await client.hget(this.hashKey, key);

  if(cachedValue) {
      const parsedDoc = JSON.parse(cachedValue);

      return Array.isArray(parsedDoc) ? parsedDoc.map(doc => new 
      this.model(doc)) : new this.model(parsedDoc);
  }

  const result = await exec.apply(this, arguments);

  client.hset(this.hashKey, key, JSON.stringify(result), 'EX', 10);

  return result;
}

I am implementing a cacheing layer in NodeJS and MongoDB using Redis. I am fairly new to Redis. So I am having trouble where I am trying to automatically clear cache after a given timing. The error I am getting

ReplyError: ERR wrong number of arguments for 'hset' mand

This is my code block

mongoose.Query.prototype.exec = async function() {

  const key = JSON.stringify(
      Object.assign({}, this.getQuery(), {collection: 
      this.mongooseCollection.name})
  );
  const cachedValue = await client.hget(this.hashKey, key);

  if(cachedValue) {
      const parsedDoc = JSON.parse(cachedValue);

      return Array.isArray(parsedDoc) ? parsedDoc.map(doc => new 
      this.model(doc)) : new this.model(parsedDoc);
  }

  const result = await exec.apply(this, arguments);

  client.hset(this.hashKey, key, JSON.stringify(result), 'EX', 10);

  return result;
}
Share Improve this question asked Jan 4, 2019 at 16:11 Rajesh BarikRajesh Barik 1912 gold badges3 silver badges14 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

Redis HSET only accepts 3 arguments. If you want to store multiple keys in one call, you should use HMSET.

Reference:

https://redis.io/mands/hset

https://redis.io/mands/hmset

client.hmset(this.hashKey, key, JSON.stringify(result), 'EX', 10);

should work.

发布评论

评论列表(0)

  1. 暂无评论