Skip to content

Commit 07bac51

Browse files
author
Simon Prickett
authored
Merge pull request #213 from redis/increase-default-search-results-page-size-#207
Updated page size to 1000 from 10.
2 parents 31fd071 + fd151fc commit 07bac51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aredis_om/model/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ class RediSearchFieldTypes(Enum):
331331

332332
# TODO: How to handle Geo fields?
333333
NUMERIC_TYPES = (float, int, decimal.Decimal)
334-
DEFAULT_PAGE_SIZE = 10
334+
DEFAULT_PAGE_SIZE = 1000
335335

336336

337337
class FindQuery:

0 commit comments

Comments
 (0)