Updated page size to 1000 from 10.

This commit is contained in:
Simon Prickett 2022-04-22 13:17:25 +01:00
parent 31fd071211
commit fd151fc322

View file

@ -331,7 +331,7 @@ class RediSearchFieldTypes(Enum):
# TODO: How to handle Geo fields?
NUMERIC_TYPES = (float, int, decimal.Decimal)
DEFAULT_PAGE_SIZE = 10
DEFAULT_PAGE_SIZE = 1000
class FindQuery: