comparison Resources/Configuration.json @ 3160:fc9a4a2dad63

merge
author Alain Mazy <alain@mazy.be>
date Thu, 24 Jan 2019 10:55:19 +0100
parents 5a3b961e9524
children 94a4f75cc746
comparison
equal deleted inserted replaced
3159:4cfed5c2eacd 3160:fc9a4a2dad63
344 // "/exports". Setting this option to "false" is useful to prevent 344 // "/exports". Setting this option to "false" is useful to prevent
345 // the index to grow indefinitely in auto-routing tasks (this is the 345 // the index to grow indefinitely in auto-routing tasks (this is the
346 // default behavior since Orthanc 1.4.0). 346 // default behavior since Orthanc 1.4.0).
347 "LogExportedResources" : false, 347 "LogExportedResources" : false,
348 348
349 // Enable or disable HTTP Keep-Alive (deprecated). Set this option 349 // Enable or disable HTTP Keep-Alive (persistent HTTP
350 // to "true" only in the case of high HTTP loads. 350 // connections). Setting this option to "true" prevents Orthanc
351 "KeepAlive" : false, 351 // issue #32 ("HttpServer does not support multiple HTTP requests in
352 // the same TCP stream"), but can possibly slow down HTTP clients
353 // that do not support persistent connections. The default behavior
354 // used to be "false" in Orthanc <= 1.5.1. Setting this option to
355 // "false" is also recommended if Orthanc is compiled against
356 // Mongoose.
357 "KeepAlive" : true,
358
359 // Enable or disable Nagle's algorithm. Only taken into
360 // consideration if Orthanc is compiled to use CivetWeb. Experiments
361 // show that best performance can be obtained by setting both
362 // "KeepAlive" and "TcpNoDelay" to "true". Beware however of
363 // caveats: https://eklitzke.org/the-caveats-of-tcp-nodelay
364 "TcpNoDelay" : true,
352 365
353 // If this option is set to "false", Orthanc will run in index-only 366 // If this option is set to "false", Orthanc will run in index-only
354 // mode. The DICOM files will not be stored on the drive. Note that 367 // mode. The DICOM files will not be stored on the drive. Note that
355 // this option might prevent the upgrade to newer versions of Orthanc. 368 // this option might prevent the upgrade to newer versions of Orthanc.
356 "StoreDicom" : true, 369 "StoreDicom" : true,