comparison OrthancServer/Resources/Configuration.json @ 5642:95e282478cda

clarified DicomThreadsCount doc
author Alain Mazy <am@orthanc.team>
date Fri, 31 May 2024 09:20:35 +0200
parents 4535194cbb8a
children b1a18218860c
comparison
equal deleted inserted replaced
5640:f7adfb22e20e 5642:95e282478cda
474 // a compressed transfer syntax. (new in Orthanc 1.9.0) 474 // a compressed transfer syntax. (new in Orthanc 1.9.0)
475 "DicomScuPreferredTransferSyntax" : "1.2.840.10008.1.2.1", 475 "DicomScuPreferredTransferSyntax" : "1.2.840.10008.1.2.1",
476 476
477 // Number of threads that are used by the embedded DICOM server. 477 // Number of threads that are used by the embedded DICOM server.
478 // This defines the number of concurrent DICOM operations that can 478 // This defines the number of concurrent DICOM operations that can
479 // be run. Note: This is not limiting the number of concurrent 479 // be run when Orthanc is acting as SCP.
480 // connections. With a single thread, if a C-Find is received during 480 // Note: This is not limiting the number of concurrent connections
481 // e.g the transcoding of an incoming C-Store, it will have to wait 481 // but the number of concurrent DICOM operations.
482 // until the end of the C-Store before being processed. (new in 482 // E.g, with a single thread, if a C-Find is received during
483 // Orthanc 1.10.0, before this version, the value was fixed to 4) 483 // e.g the transcoding of an incoming C-Store, the C-Find will
484 // be processed only at the end of the C-Store operation but both
485 // DICOM assocations will remain active.
486 // (new in Orthanc 1.10.0, before this version, the value was
487 // fixed to 4)
484 "DicomThreadsCount" : 4, 488 "DicomThreadsCount" : 4,
485 489
486 // The list of the known Orthanc peers. This option is ignored if 490 // The list of the known Orthanc peers. This option is ignored if
487 // "OrthancPeersInDatabase" is set to "true", in which case you must 491 // "OrthancPeersInDatabase" is set to "true", in which case you must
488 // use the REST API to define Orthanc peers. 492 // use the REST API to define Orthanc peers.