yeahoffline / redis-mock

Node.js redis client mock
212 stars 110 forks source link

Upgraded hset to be the same as hmset #182

Open dbhat6 opened 3 years ago

dbhat6 commented 3 years ago

@kamiljano @yeahoffline As per the documentation, HMSET is deprecated and HSET is upgraded to handle the exact same functionality as HMSET.

As of Redis 4.0.0, HSET is variadic and allows for multiple field/value pairs. As per Redis 4.0.0, HMSET is considered deprecated. Please prefer HSET in new code.

Made the code changes as part of #179