Updated page size to 1000 from 10.
This commit is contained in:
Simon Prickett 2022-04-22 13:28:26 +01:00 committed by GitHub
commit 07bac5118c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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