From 269a9836017a7c94ded3d22c2810a0724c5fbcd0 Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Sun, 26 Aug 2018 20:43:15 -0500 Subject: [PATCH] bump batchsize (ram bumped on server) 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 65c1415e5..c6660a063 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 = 250; + private const int BatchSize = 5000; private readonly FilterListsDbContext dbContext; public readonly FilterListViewUrlDto List; protected readonly Data.Entities.Snapshot SnapEntity;