You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/NRedisStack/Bloom/IBloomCommands.cs
+3-6
Original file line number
Diff line number
Diff line change
@@ -47,12 +47,9 @@ public interface IBloomCommands
47
47
/// <param name="items">One or more items to add.</param>
48
48
/// <param name="capacity">(Optional) Specifies the desired capacity for the filter to be created.</param>
49
49
/// <param name="error">(Optional) Specifies the error ratio of the newly created filter if it does not yet exist.</param>
50
-
/// <param name="expansion">(Optional) When capacity is reached, an additional sub-filter is
51
-
/// created in size of the last sub-filter multiplied by expansion.</param>
52
-
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the
53
-
/// filter should not be created if it does not already exist.</param>
54
-
/// <param name="nonscaling">(Optional) <see langword="true"/> toprevent the filter
55
-
/// from creating additional sub-filters if initial capacity is reached.</param>
50
+
/// <param name="expansion">(Optional) When capacity is reached, an additional sub-filter is created in size of the last sub-filter multiplied by expansion.</param>
51
+
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the filter should not be created if it does not already exist.</param>
52
+
/// <param name="nonscaling">(Optional) <see langword="true"/> toprevent the filter from creating additional sub-filters if initial capacity is reached.</param>
56
53
/// <returns>An array of booleans. Each element is either true or false depending on whether the
57
54
/// corresponding input element was newly added to the filter or may have previously existed.</returns>
Copy file name to clipboardexpand all lines: src/NRedisStack/Bloom/IBloomCommandsAsync.cs
+2-4
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,8 @@ public interface IBloomCommandsAsync
50
50
/// <param name="error">(Optional) Specifies the error ratio of the newly created filter if it does not yet exist.</param>
51
51
/// <param name="expansion">(Optional) When capacity is reached, an additional sub-filter is
52
52
/// created in size of the last sub-filter multiplied by expansion.</param>
53
-
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the
54
-
/// filter should not be created if it does not already exist.</param>
55
-
/// <param name="nonscaling">(Optional) <see langword="true"/> toprevent the filter
56
-
/// from creating additional sub-filters if initial capacity is reached.</param>
53
+
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the filter should not be created if it does not already exist.</param>
54
+
/// <param name="nonscaling">(Optional) <see langword="true"/> toprevent the filter from creating additional sub-filters if initial capacity is reached.</param>
57
55
/// <returns>An array of booleans. Each element is either true or false depending on whether the
58
56
/// corresponding input element was newly added to the filter or may have previously existed.</returns>
@@ -76,9 +76,8 @@ public interface ICuckooCommandsAsync
76
76
/// <param name="key">The name of the filter.</param>
77
77
/// <param name="items">One or more items to add.</param>
78
78
/// <param name="capacity">(Optional) Specifies the desired capacity for the filter to be created.</param>
79
-
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the
80
-
/// <returns>An array of booleans.where <see langword="true"/> means the item has been added to the filter,
81
-
/// and <see langword="false"/> mean, the item already existed</returns>
79
+
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the filter should not be created if it does not already exist.</param>
80
+
/// <returns>An array of booleans.where <see langword="true"/> means the item has been added to the filter, and <see langword="false"/> mean, the item already existed</returns>
0 commit comments