예제 #1
0
 public long ZUnionStore(string destination, string[] keys, string[] weights, AggregateOption option)
 {
     return this.ZUnionStore(destination, keys.Length, keys, "WEIGHT", weights, "AGGREGATE", option.ToString().ToUpper());
 }
예제 #2
0
 public long ZInterStore(string destination, string[] keys, AggregateOption option = AggregateOption.Sum)
 {
     return this.ZInterScore(destination, keys.Length, keys, "AGGREGATE", option.ToString().ToUpper());
 }