Skip to content

Commit e49b480

Browse files
committed
clarify that the enumerable APIs may involve multiple operations
1 parent cb9c8df commit e49b480

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/NRedisStack/Search/ISearchCommandsAsync.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ public interface ISearchCommandsAsync
1616
Task<RedisResult[]> _ListAsync();
1717

1818
/// <summary>
19-
/// Run a search query on an index, and perform aggregate transformations on the results.
19+
/// Run a search query on an index, and perform aggregate transformations on the results. This operates
20+
/// as a cursor and may involve multiple commands to the server.
2021
/// </summary>
2122
/// <param name="index">The index name.</param>
2223
/// <param name="query">The query</param>
@@ -25,7 +26,8 @@ public interface ISearchCommandsAsync
2526
Task<AggregationResult> AggregateAsync(string index, AggregationRequest query);
2627

2728
/// <summary>
28-
/// Run a search query on an index, and perform aggregate transformations on the results.
29+
/// Run a search query on an index, and perform aggregate transformations on the results. This operates
30+
/// as a cursor and may involve multiple commands to the server.
2931
/// </summary>
3032
/// <param name="index">The index name.</param>
3133
/// <param name="query">The query.</param>

0 commit comments

Comments
 (0)