taoensso / carmine

Redis client + message queue for Clojure
https://www.taoensso.com/carmine
Eclipse Public License 1.0
1.15k stars 130 forks source link

Make HSET variadic? Deprecate HMSET? #232

Closed handerpeder closed 4 years ago

handerpeder commented 4 years ago

Starting with Redis 4.0 HSET is variadic. Is there a reason for not updating carmine/hset to support this?

Also from the Redis documentation:

As per Redis 4.0.0, HMSET is considered deprecated. Please use HSET in new code.

ptaoussanis commented 4 years ago

Hi there!

Carmine's hset is variadic. In general, Carmine's commands inherit their definition directly from the Redis command spec .

Likewise hmset will be marked as deprecated if/when it is marked as deprecated in Redis.

Hope that helps!