From 07559e7ff81d1baf1b805db4125d2f611f7e148c Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Sun, 10 Feb 2019 23:17:22 +0000 Subject: [PATCH] Temporarily remove parallel iterator processing --- db/vars.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/db/vars.go b/db/vars.go index 9de4999c..12a91ee2 100644 --- a/db/vars.go +++ b/db/vars.go @@ -16,7 +16,6 @@ package db import ( "errors" - "runtime" ) type method int8 @@ -86,7 +85,7 @@ const ( var ( // workerCount specifies how many workers should be used // to process each query statement concurrently. - workerCount = runtime.NumCPU() + workerCount = 1 // maxRecursiveQueries specifies how many queries will be // processed recursively before the query is cancelled.