From 0851f2f251e5634c8c20cc5b18085dcff326c66f Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 20 Aug 2018 14:09:36 -0500 Subject: [PATCH] batchsize = 500 ref #357 --- src/FilterLists.Services/Snapshot/Snapshot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Services/Snapshot/Snapshot.cs b/src/FilterLists.Services/Snapshot/Snapshot.cs index 0e63d382d3..fe52db0c01 100644 --- a/src/FilterLists.Services/Snapshot/Snapshot.cs +++ b/src/FilterLists.Services/Snapshot/Snapshot.cs @@ -17,7 +17,7 @@ namespace FilterLists.Services.Snapshot { public class Snapshot { - private const int BatchSize = 1000; + private const int BatchSize = 500; private readonly FilterListsDbContext dbContext; private readonly FilterListViewUrlDto list; private readonly Data.Entities.Snapshot snapEntity;