Modifying the sane defaults to have 3 advanced calls, 15 megs cache size and 30000 records.

This commit is contained in:
Sahil Palvia 2017-09-26 14:41:32 -07:00
parent 34dd6f416a
commit f96062efe3

View file

@ -21,7 +21,7 @@ import lombok.extern.apachecommons.CommonsLog;
@CommonsLog
public class SimpleRecordsFetcherFactory implements RecordsFetcherFactory {
private final int maxRecords;
private int maxSize = 10;
private int maxSize = 3;
private int maxByteSize = 15 * 1024 * 1024;
private int maxRecordsCount = 30000;
private DataFetchingStrategy dataFetchingStrategy = DataFetchingStrategy.DEFAULT;