Reputation: 31
when i do the aggregation for 1 day the result is returned here is an example query FT.AGGREGATE myIndex '@date:[1632776400000 1632862800000]' GROUPBY 1 @name REDUCE COUNT 0 AS count SORTBY 2 @count DESC MAX 10
but if you remove the filters, FT.AGGREGATE myIndex '*' GROUPBY 1 @name REDUCE COUNT 0 AS count SORTBY 2 @count DESC MAX 10. (OR LIMIT 0 10)
then this will return
now only 1kk keys
why is this happening? how to get the result for the entire database?
Upvotes: 0
Views: 319