From 76e103d846250aa6fefbc781a66dd99a46bc3fe5 Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Sun, 26 Aug 2018 19:45:43 -0500 Subject: [PATCH] drop batch size a tad more ref #344 --- 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 b442cba36..80307dc2d 100644 --- a/src/FilterLists.Services/Snapshot/Snapshot.cs +++ b/src/FilterLists.Services/Snapshot/Snapshot.cs @@ -18,7 +18,7 @@ namespace FilterLists.Services.Snapshot { public class Snapshot { - private const int BatchSize = 1000; + private const int BatchSize = 500; private readonly FilterListsDbContext dbContext; public readonly FilterListViewUrlDto List; protected readonly Data.Entities.Snapshot SnapEntity;