Merge pull request #213 from redis/increase-default-search-results-page-size-#207
Updated page size to 1000 from 10.
This commit is contained in:
commit
07bac5118c
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue