@@ -33,7 +33,7 @@ public bool GeoAdd(RedisKey key, GeoEntry value, CommandFlags flags = CommandFla
33
33
public bool GeoRemove ( RedisKey key , RedisValue member , CommandFlags flags = CommandFlags . None ) =>
34
34
Inner . GeoRemove ( ToInner ( key ) , member , flags ) ;
35
35
36
- public double ? GeoDistance ( RedisKey key , RedisValue member1 , RedisValue member2 , GeoUnit unit = GeoUnit . Meters , CommandFlags flags = CommandFlags . None ) =>
36
+ public double ? GeoDistance ( RedisKey key , RedisValue member1 , RedisValue member2 , GeoUnit unit = GeoUnit . Meters , CommandFlags flags = CommandFlags . None ) =>
37
37
Inner . GeoDistance ( ToInner ( key ) , member1 , member2 , unit , flags ) ;
38
38
39
39
public string ? [ ] GeoHash ( RedisKey key , RedisValue [ ] members , CommandFlags flags = CommandFlags . None ) =>
@@ -48,7 +48,7 @@ public bool GeoRemove(RedisKey key, RedisValue member, CommandFlags flags = Comm
48
48
public GeoPosition ? GeoPosition ( RedisKey key , RedisValue member , CommandFlags flags = CommandFlags . None ) =>
49
49
Inner . GeoPosition ( ToInner ( key ) , member , flags ) ;
50
50
51
- public GeoRadiusResult [ ] GeoRadius ( RedisKey key , RedisValue member , double radius , GeoUnit unit = GeoUnit . Meters , int count = - 1 , Order ? order = null , GeoRadiusOptions options = GeoRadiusOptions . Default , CommandFlags flags = CommandFlags . None ) =>
51
+ public GeoRadiusResult [ ] GeoRadius ( RedisKey key , RedisValue member , double radius , GeoUnit unit = GeoUnit . Meters , int count = - 1 , Order ? order = null , GeoRadiusOptions options = GeoRadiusOptions . Default , CommandFlags flags = CommandFlags . None ) =>
52
52
Inner . GeoRadius ( ToInner ( key ) , member , radius , unit , count , order , options , flags ) ;
53
53
54
54
public GeoRadiusResult [ ] GeoRadius ( RedisKey key , double longitude , double latitude , double radius , GeoUnit unit = GeoUnit . Meters , int count = - 1 , Order ? order = null , GeoRadiusOptions options = GeoRadiusOptions . Default , CommandFlags flags = CommandFlags . None ) =>
@@ -407,7 +407,7 @@ public long SortedSetAdd(RedisKey key, SortedSetEntry[] values, CommandFlags fla
407
407
public long SortedSetAdd ( RedisKey key , SortedSetEntry [ ] values , When when = When . Always , CommandFlags flags = CommandFlags . None ) =>
408
408
Inner . SortedSetAdd ( ToInner ( key ) , values , when , flags ) ;
409
409
410
- public long SortedSetAdd ( RedisKey key , SortedSetEntry [ ] values , SortedSetWhen when = SortedSetWhen . Always , CommandFlags flags = CommandFlags . None ) =>
410
+ public long SortedSetAdd ( RedisKey key , SortedSetEntry [ ] values , SortedSetWhen when = SortedSetWhen . Always , CommandFlags flags = CommandFlags . None ) =>
411
411
Inner . SortedSetAdd ( ToInner ( key ) , values , when , flags ) ;
412
412
413
413
public bool SortedSetAdd ( RedisKey key , RedisValue member , double score , CommandFlags flags ) =>
@@ -510,7 +510,7 @@ public long SortedSetRemoveRangeByValue(RedisKey key, RedisValue min, RedisValue
510
510
public double ? [ ] SortedSetScores ( RedisKey key , RedisValue [ ] members , CommandFlags flags = CommandFlags . None ) =>
511
511
Inner . SortedSetScores ( ToInner ( key ) , members , flags ) ;
512
512
513
- public long SortedSetUpdate ( RedisKey key , SortedSetEntry [ ] values , SortedSetWhen when = SortedSetWhen . Always , CommandFlags flags = CommandFlags . None ) =>
513
+ public long SortedSetUpdate ( RedisKey key , SortedSetEntry [ ] values , SortedSetWhen when = SortedSetWhen . Always , CommandFlags flags = CommandFlags . None ) =>
514
514
Inner . SortedSetUpdate ( ToInner ( key ) , values , when , flags ) ;
515
515
516
516
public bool SortedSetUpdate ( RedisKey key , RedisValue member , double score , SortedSetWhen when = SortedSetWhen . Always , CommandFlags flags = CommandFlags . None ) =>
@@ -706,8 +706,14 @@ IEnumerable<HashEntry> IDatabase.HashScan(RedisKey key, RedisValue pattern, int
706
706
IEnumerable < HashEntry > IDatabase . HashScan ( RedisKey key , RedisValue pattern , int pageSize , long cursor , int pageOffset , CommandFlags flags )
707
707
=> Inner . HashScan ( ToInner ( key ) , pattern , pageSize , cursor , pageOffset , flags ) ;
708
708
709
+ IEnumerable < RedisValue > IDatabase . HashScanNoValues ( RedisKey key , RedisValue pattern , int pageSize , CommandFlags flags )
710
+ => Inner . HashScanNoValues ( ToInner ( key ) , pattern , pageSize , flags ) ;
711
+
712
+ IEnumerable < RedisValue > IDatabase . HashScanNoValues ( RedisKey key , RedisValue pattern , int pageSize , long cursor , int pageOffset , CommandFlags flags )
713
+ => Inner . HashScanNoValues ( ToInner ( key ) , pattern , pageSize , cursor , pageOffset , flags ) ;
714
+
709
715
IEnumerable < RedisValue > IDatabase . SetScan ( RedisKey key , RedisValue pattern , int pageSize , CommandFlags flags )
710
- => Inner . SetScan ( ToInner ( key ) , pattern , pageSize , flags ) ;
716
+ => Inner . SetScan ( ToInner ( key ) , pattern , pageSize , flags ) ;
711
717
712
718
IEnumerable < RedisValue > IDatabase . SetScan ( RedisKey key , RedisValue pattern , int pageSize , long cursor , int pageOffset , CommandFlags flags )
713
719
=> Inner . SetScan ( ToInner ( key ) , pattern , pageSize , cursor , pageOffset , flags ) ;
0 commit comments