File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ static NRedisStack.Search.ApplyExpression.implicit operator NRedisStack.Search.A
5858[NRS001]NRedisStack.Search.HybridSearchQuery.VectorSearchConfig.WithScoreAlias(string? scoreAlias) -> NRedisStack.Search.HybridSearchQuery.VectorSearchConfig
5959[NRS001]NRedisStack.Search.HybridSearchQuery.VectorSearchConfig.WithVectorData(NRedisStack.Search.HybridSearchQuery.VectorData vectorData) -> NRedisStack.Search.HybridSearchQuery.VectorSearchConfig
6060[NRS001]NRedisStack.Search.HybridSearchQuery.VectorSearchMethod
61- [NRS001]NRedisStack.Search.HybridSearchQuery.WithCursor(int count = 0, System.TimeSpan maxIdle = default(System.TimeSpan)) -> NRedisStack.Search.HybridSearchQuery!
6261[NRS001]NRedisStack.Search.HybridSearchResult
6362[NRS001]NRedisStack.Search.HybridSearchResult.ExecutionTime.get -> System.TimeSpan
6463[NRS001]NRedisStack.Search.HybridSearchResult.Results.get -> System.Collections.Generic.IReadOnlyDictionary<string!, object!>![]!
Original file line number Diff line number Diff line change @@ -225,8 +225,9 @@ public HybridSearchQuery Timeout(bool timeout = true)
225225 /// <summary>
226226 /// Use a cursor for result iteration.
227227 /// </summary>
228- public HybridSearchQuery WithCursor ( int count = 0 , TimeSpan maxIdle = default )
228+ internal HybridSearchQuery WithCursor ( int count = 0 , TimeSpan maxIdle = default )
229229 {
230+ // not currently exposed, while I figure out the API
230231 _cursorCount = count ;
231232 _cursorMaxIdle = maxIdle ;
232233 return this ;
You can’t perform that action at this time.
0 commit comments