increase batch size (huge lists grind nearly to a halt)

This commit is contained in:
Collin Barrett 2018-09-02 18:17:33 -05:00
parent c9035eca9c
commit 0ba74f16af

View file

@ -19,7 +19,7 @@ namespace FilterLists.Services.Snapshot
{
public class Snapshot
{
private const int BatchSize = 1000;
private const int BatchSize = 10000;
public readonly FilterListViewUrlDto List;
protected readonly Data.Entities.Snapshot SnapEntity;
private readonly FilterListsDbContext dbContext;