redis-om-dotnet
redis-om-dotnet copied to clipboard
Linq ToList() unable to retrieve more than 10,000 items?
So I am attempting to pull more than 10,000 items into a list after loading them into a cache. Currently, Linq is unable to pull more than 10k items.
Processing Method
IRedisCollection<AmtxDetail> rawDetailCache = redisConnectionProvider.RedisCollection<AmtxDetail>();
IList<AmtxDetail> details = await rawDetailCache.ToListAsync();
What am I missing here?
You are probably running into a MAXSEARCHRESULTS config setting: https://redis.io/docs/latest/develop/interact/search-and-query/basic-constructs/configuration-parameters/#maxsearchresults - how are you running Redis?