Hey, how can I reproduce this command in the Redis client:
ZINTERSTORE dest 2 some_zset some_other_set WEIGHTS 1 0 AGGREGATE MAX
Thanks!
We only have the basic API for StoreIntersectFromSortedSets:
https://github.com/ServiceStack/ServiceStack.Redis/blob/master/tests/ServiceStack.Redis.Tests/RedisClientSortedSetTests.cs#L175
or its underling RedisNativeClient.ZInterStore() API but that doesn’t accept command modifiers.
You can try using the generic Custom Redis API’s for this: https://github.com/ServiceStack/ServiceStack.Redis#new-generic-apis-for-calling-custom-redis-commands