@@ -111,7 +111,7 @@ public bool[] Insert(RedisKey key, RedisValue[] items, int? capacity = null,
111
111
throw new ArgumentOutOfRangeException ( nameof ( items ) ) ;
112
112
113
113
var args = BloomAux . BuildInsertArgs ( key , items , capacity , error , expansion , nocreate , nonscaling ) ;
114
-
114
+
115
115
return _db . Execute ( BF . INSERT , args ) . ToBooleanArray ( ) ;
116
116
}
117
117
@@ -335,7 +335,7 @@ public async Task<bool> ReserveAsync(RedisKey key, double errorRate, long capaci
335
335
/// <param name="iterator">Iterator value; either 0 or the iterator from a previous invocation of this command.</param>
336
336
/// <returns>Tuple of iterator and data.</returns>
337
337
/// <remarks><seealso href="https://redis.io/commands/bf.scandump"/></remarks>
338
- public Tuple < long , Byte [ ] > ScanDump ( RedisKey key , long iterator )
338
+ public Tuple < long , Byte [ ] > ScanDump ( RedisKey key , long iterator )
339
339
{
340
340
return _db . Execute ( BF . SCANDUMP , key , iterator ) . ToScanDumpTuple ( ) ;
341
341
}
@@ -347,7 +347,7 @@ public Tuple<long,Byte[]> ScanDump(RedisKey key, long iterator)
347
347
/// <param name="iterator">Iterator value; either 0 or the iterator from a previous invocation of this command.</param>
348
348
/// <returns>Tuple of iterator and data.</returns>
349
349
/// <remarks><seealso href="https://redis.io/commands/bf.scandump"/></remarks>
350
- public async Task < Tuple < long , Byte [ ] > > ScanDumpAsync ( RedisKey key , long iterator )
350
+ public async Task < Tuple < long , Byte [ ] > > ScanDumpAsync ( RedisKey key , long iterator )
351
351
{
352
352
var result = await _db . ExecuteAsync ( BF . SCANDUMP , key , iterator ) ;
353
353
return result . ToScanDumpTuple ( ) ;
0 commit comments