Parallel read request processing with thread pool. (#118)

This commit is contained in:
Chalith Desaman
2020-09-18 09:29:34 +05:30
committed by GitHub
parent 93f57efbe3
commit 0de20dba28
5 changed files with 181 additions and 76 deletions

View File

@@ -78,7 +78,6 @@ namespace conf
boost::filesystem::create_directories(ctx.config_dir);
boost::filesystem::create_directories(ctx.hist_dir);
boost::filesystem::create_directories(ctx.state_rw_dir);
boost::filesystem::create_directories(ctx.state_read_req_dir);
//Create config file with default settings.
@@ -146,7 +145,6 @@ namespace conf
ctx.hist_dir = basedir + "/hist";
ctx.state_dir = basedir + "/state";
ctx.state_rw_dir = ctx.state_dir + "/rw";
ctx.state_read_req_dir = ctx.state_dir + "/rr";
ctx.log_dir = basedir + "/log";
}