comparison Resources/Configuration.json @ 3180:07a2f637b76d

new option: "HttpThreadsCount" to set the number of threads in the embedded HTTP server
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 30 Jan 2019 17:50:51 +0100
parents 8ea7c4546c3a
children 6fd38327e777
comparison
equal deleted inserted replaced
3179:fca730c267d7 3180:07a2f637b76d
361 // show that best performance can be obtained by setting both 361 // show that best performance can be obtained by setting both
362 // "KeepAlive" and "TcpNoDelay" to "true". Beware however of 362 // "KeepAlive" and "TcpNoDelay" to "true". Beware however of
363 // caveats: https://eklitzke.org/the-caveats-of-tcp-nodelay 363 // caveats: https://eklitzke.org/the-caveats-of-tcp-nodelay
364 "TcpNoDelay" : true, 364 "TcpNoDelay" : true,
365 365
366 // Number of threads that are used by the embedded HTTP server.
367 "HttpThreadsCount" : 50,
368
366 // If this option is set to "false", Orthanc will run in index-only 369 // If this option is set to "false", Orthanc will run in index-only
367 // mode. The DICOM files will not be stored on the drive. Note that 370 // mode. The DICOM files will not be stored on the drive. Note that
368 // this option might prevent the upgrade to newer versions of Orthanc. 371 // this option might prevent the upgrade to newer versions of Orthanc.
369 "StoreDicom" : true, 372 "StoreDicom" : true,
370 373