From e41848c537ed55bd03731214e8fef48889ca60ef Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Wed, 11 Oct 2017 11:40:54 -0700 Subject: [PATCH] create an issue for tuning the parallelism constant License: MIT Signed-off-by: Steven Allen --- merkledag/batch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/merkledag/batch.go b/merkledag/batch.go index 5879ad99b..bf3e74048 100644 --- a/merkledag/batch.go +++ b/merkledag/batch.go @@ -9,7 +9,7 @@ import ( ) // ParallelBatchCommits is the number of batch commits that can be in-flight before blocking. -// TODO: Experiment with multiple datastores, storage devices, and CPUs to find +// TODO(#4299): Experiment with multiple datastores, storage devices, and CPUs to find // the right value/formula. var ParallelBatchCommits = runtime.NumCPU() * 2