Skip to content

Commit 980d322

Browse files
authored
apply avoiding assembly level parallelism for enterprise redis and windows tests (#327)
- fix warnings related to xml comments - apply assembly level parallelism for enterprise redis and windows tests
1 parent 19dad85 commit 980d322

13 files changed

+26
-32
lines changed

.github/workflows/integration.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: dotnet build --no-restore /p:ContinuousIntegrationBuild=true
6060

6161
- name: Test
62-
run: dotnet test -f net8.0 --no-build --verbosity detailed
62+
run: dotnet test -f net8.0 --no-build --verbosity detailed -p:BuildInParallel=false tests/Test.proj
6363

6464
dotnet_6_cluster:
6565
name: .NET 6 on [redis-stack cluster]
@@ -175,4 +175,4 @@ jobs:
175175
shell: cmd
176176
run: |
177177
START wsl ./redis-stack-server-${{env.redis_stack_version}}/bin/redis-stack-server &
178-
dotnet test -f net481 --no-build --verbosity detailed
178+
dotnet test -f net481 --no-build --verbosity detailed -p:BuildInParallel=false tests/Test.proj

src/NRedisStack/Bloom/IBloomCommands.cs

+3-6
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,9 @@ public interface IBloomCommands
4747
/// <param name="items">One or more items to add.</param>
4848
/// <param name="capacity">(Optional) Specifies the desired capacity for the filter to be created.</param>
4949
/// <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>
5653
/// <returns>An array of booleans. Each element is either true or false depending on whether the
5754
/// corresponding input element was newly added to the filter or may have previously existed.</returns>
5855
/// <remarks><seealso href="https://redis.io/commands/bf.insert"/></remarks>

src/NRedisStack/Bloom/IBloomCommandsAsync.cs

+2-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,8 @@ public interface IBloomCommandsAsync
5050
/// <param name="error">(Optional) Specifies the error ratio of the newly created filter if it does not yet exist.</param>
5151
/// <param name="expansion">(Optional) When capacity is reached, an additional sub-filter is
5252
/// 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>
5755
/// <returns>An array of booleans. Each element is either true or false depending on whether the
5856
/// corresponding input element was newly added to the filter or may have previously existed.</returns>
5957
/// <remarks><seealso href="https://redis.io/commands/bf.insert"/></remarks>

src/NRedisStack/CuckooFilter/ICuckooCommands.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public interface ICuckooCommands
6464
/// <param name="key">The name of the filter.</param>
6565
/// <param name="items">One or more items to add.</param>
6666
/// <param name="capacity">(Optional) Specifies the desired capacity for the filter to be created.</param>
67-
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the
67+
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the filter should not be created if it does not already exist.</param>
6868
/// <returns>An array of booleans.</returns>
6969
/// <remarks><seealso href="https://redis.io/commands/cf.insert"/></remarks>
7070
bool[] Insert(RedisKey key, RedisValue[] items, int? capacity = null, bool nocreate = false);
@@ -76,7 +76,7 @@ public interface ICuckooCommands
7676
/// <param name="key">The name of the filter.</param>
7777
/// <param name="items">One or more items to add.</param>
7878
/// <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
79+
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the filter should not be created if it does not already exist.</param>
8080
/// <returns>An array of booleans.where <see langword="true"/> means the item has been added to the filter,
8181
/// and <see langword="false"/> mean, the item already existed</returns>
8282
/// <remarks><seealso href="https://redis.io/commands/cf.insertnx"/></remarks>

src/NRedisStack/CuckooFilter/ICuckooCommandsAsync.cs

+3-4
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public interface ICuckooCommandsAsync
6464
/// <param name="key">The name of the filter.</param>
6565
/// <param name="items">One or more items to add.</param>
6666
/// <param name="capacity">(Optional) Specifies the desired capacity for the filter to be created.</param>
67-
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the
67+
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the filter should not be created if it does not already exist.</param>
6868
/// <returns>An array of booleans.</returns>
6969
/// <remarks><seealso href="https://redis.io/commands/cf.insert"/></remarks>
7070
Task<bool[]> InsertAsync(RedisKey key, RedisValue[] items, int? capacity = null, bool nocreate = false);
@@ -76,9 +76,8 @@ public interface ICuckooCommandsAsync
7676
/// <param name="key">The name of the filter.</param>
7777
/// <param name="items">One or more items to add.</param>
7878
/// <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>
8281
/// <remarks><seealso href="https://redis.io/commands/cf.insertnx"/></remarks>
8382
Task<bool[]> InsertNXAsync(RedisKey key, RedisValue[] items, int? capacity = null, bool nocreate = false);
8483

src/NRedisStack/Gears/GearsCommands.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static Dictionary<string, RedisResult>[] TFunctionList(this IDatabase db,
5454
/// <param name="functionName">The function name to run.</param>
5555
/// <param name="keys">keys that will be touched by the function.</param>
5656
/// <param name="args">Additional argument to pass to the function.</param>
57-
/// <returns>The return value from the sync & async function on error in case of failure.</returns>
57+
/// <returns>The return value from the sync &amp; async function on error in case of failure.</returns>
5858
/// <remarks><seealso href="https://redis.io/commands/tfcall"/></remarks>
5959
public static RedisResult TFCall_(this IDatabase db, string libraryName, string functionName, string[]? keys = null, string[]? args = null)
6060
{
@@ -68,7 +68,7 @@ public static RedisResult TFCall_(this IDatabase db, string libraryName, string
6868
/// <param name="functionName">The function name to run.</param>
6969
/// <param name="keys">keys that will be touched by the function.</param>
7070
/// <param name="args">Additional argument to pass to the function.</param>
71-
/// <returns>The return value from the sync & async function on error in case of failure.</returns>
71+
/// <returns>The return value from the sync &amp; async function on error in case of failure.</returns>
7272
/// <remarks><seealso href="https://redis.io/commands/tfcallasync"/></remarks>
7373
public static RedisResult TFCallAsync_(this IDatabase db, string libraryName, string functionName, string[]? keys = null, string[]? args = null)
7474
{

src/NRedisStack/Gears/GearsCommandsAsync.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static async Task<Dictionary<string, RedisResult>[]> TFunctionListAsync(t
5353
/// <param name="functionName">The function name to run.</param>
5454
/// <param name="keys">keys that will be touched by the function.</param>
5555
/// <param name="args">Additional argument to pass to the function.</param>
56-
/// <returns>The return value from the sync & async function on error in case of failure.</returns>
56+
/// <returns>The return value from the sync &amp; async function on error in case of failure.</returns>
5757
/// <remarks><seealso href="https://redis.io/commands/tfcall"/></remarks>
5858
public async static Task<RedisResult> TFCall_Async(this IDatabase db, string libraryName, string functionName, string[]? keys = null, string[]? args = null)
5959
{
@@ -67,7 +67,7 @@ public async static Task<RedisResult> TFCall_Async(this IDatabase db, string lib
6767
/// <param name="functionName">The function name to run.</param>
6868
/// <param name="keys">keys that will be touched by the function.</param>
6969
/// <param name="args">Additional argument to pass to the function.</param>
70-
/// <returns>The return value from the sync & async function on error in case of failure.</returns>
70+
/// <returns>The return value from the sync &amp; async function on error in case of failure.</returns>
7171
/// <remarks><seealso href="https://redis.io/commands/tfcallasync"/></remarks>
7272
public async static Task<RedisResult> TFCallAsync_Async(this IDatabase db, string libraryName, string functionName, string[]? keys = null, string[]? args = null)
7373
{

src/NRedisStack/Graph/IGraphCommands.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,15 @@ public interface IGraphCommands
128128
/// Set the value of a RedisGraph configuration parameter.
129129
/// </summary>
130130
/// <param name="configName">The config name.</param>
131-
/// <returns>Dictionary of <string, object>.</returns>
131+
/// <returns>Dictionary of &lt;string, object&gt;.</returns>
132132
/// <remarks><seealso href="https://redis.io/commands/graph.config-get"/></remarks>
133133
Dictionary<string, RedisResult> ConfigGet(string configName);
134134

135135
/// <summary>
136136
/// Returns a list containing up to 10 of the slowest queries issued against the given graph Name.
137137
/// </summary>
138138
/// <param name="graphName">The graph name.</param>
139-
/// <returns>Dictionary of <string, object>.</returns>
139+
/// <returns>Dictionary of &lt;string, object&gt;.</returns>
140140
/// <remarks><seealso href="https://redis.io/commands/graph.slowlog"/></remarks>
141141
List<List<string>> Slowlog(string graphName);
142142
}

src/NRedisStack/Graph/IGraphCommandsAsync.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,15 @@ public interface IGraphCommandsAsync
128128
/// Set the value of a RedisGraph configuration parameter.
129129
/// </summary>
130130
/// <param name="configName">The config name.</param>
131-
/// <returns>Dictionary of <string, object>.</returns>
131+
/// <returns>Dictionary of &lt;string, object&gt;.</returns>
132132
/// <remarks><seealso href="https://redis.io/commands/graph.config-get"/></remarks>
133133
Task<Dictionary<string, RedisResult>> ConfigGetAsync(string configName);
134134

135135
/// <summary>
136136
/// Returns a list containing up to 10 of the slowest queries issued against the given graph Name.
137137
/// </summary>
138138
/// <param name="graphName">The graph name.</param>
139-
/// <returns>Dictionary of <string, object>.</returns>
139+
/// <returns>Dictionary of &lt;string, object&gt;.</returns>
140140
/// <remarks><seealso href="https://redis.io/commands/graph.slowlog"/></remarks>
141141
Task<List<List<string>>> SlowlogAsync(string graphName);
142142
}

src/NRedisStack/Search/AggregationResult.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ internal AggregationResult(RedisResult result, long cursorId = -1)
4242
/// <summary>
4343
/// takes a Redis multi-bulk array represented by a RedisResult[] and recursively processes its elements.
4444
/// For each element in the array, it checks if it's another multi-bulk array, and if so, it recursively calls itself.
45-
/// If the element is not a multi-bulk array, it's added directly to a List<object>.
45+
/// If the element is not a multi-bulk array, it's added directly to a List&lt;object&gt;.
4646
/// The method returns a nested list structure, reflecting the hierarchy of the original multi-bulk array,
4747
/// with each element either being a direct value or a nested list.
4848
/// </summary>

src/NRedisStack/Tdigest/ITdigestCommands.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ public interface ITdigestCommands
1616
bool Add(RedisKey key, params double[] values);
1717

1818
/// <summary>
19-
/// Estimate the fraction of all observations added which are <= value.
19+
/// Estimate the fraction of all observations added which are &lt;= value.
2020
/// </summary>
2121
/// <param name="key">The name of the sketch.</param>
2222
/// <param name="values">upper limit of observation value.</param>
23-
/// <returns>double-reply - estimation of the fraction of all observations added which are <= value</returns>
23+
/// <returns>double-reply - estimation of the fraction of all observations added which are &lt;= value</returns>
2424
/// <remarks><seealso href="https://redis.io/commands/tdigest.cdf"/></remarks>
2525
double[] CDF(RedisKey key, params double[] values);
2626

src/NRedisStack/Tdigest/ITdigestCommandsAsync.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ public interface ITdigestCommandsAsync
1414
Task<bool> AddAsync(RedisKey key, params double[] values);
1515

1616
/// <summary>
17-
/// Estimate the fraction of all observations added which are <= value.
17+
/// Estimate the fraction of all observations added which are &lt;= value.
1818
/// </summary>
1919
/// <param name="key">The name of the sketch.</param>
2020
/// <param name="values">upper limit of observation value.</param>
21-
/// <returns>double-reply - estimation of the fraction of all observations added which are <= value</returns>
21+
/// <returns>double-reply - estimation of the fraction of all observations added which are &lt;= value</returns>
2222
/// <remarks><seealso href="https://redis.io/commands/tdigest.cdf"/></remarks>
2323
Task<double[]> CDFAsync(RedisKey key, params double[] values);
2424

tests/Test.proj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
<ItemGroup>
33
<ProjectReference Include="**\*.*proj" />
44
</ItemGroup>
5-
</Project>
5+
</Project>

0 commit comments

Comments
 (0)