spring-projects/spring-data-redis

Support `ZINTERCARD`

Opened this issue · 0 comments

Similar to SINTERCARD which implemented in

@Override
public Long intersectSize(K key, Collection<K> otherKeys) {
byte[][] rawKeys = rawKeys(key, otherKeys);
return execute(connection -> connection.sInterCard(rawKeys));
}
, It would be nice if we can provide same operation for zset.