comparison OrthancServer/Resources/Configuration.json @ 4797:4e765c18ace7 storage-cache

enable using multiple threads to load instances when generating zip archive/media
author Alain Mazy <am@osimis.io>
date Thu, 07 Oct 2021 13:31:36 +0200
parents 434843934307
children 96ab170294fd
comparison
equal deleted inserted replaced
4792:434843934307 4797:4e765c18ace7
832 // behavior of Orthanc <= 1.9.3: The ZIP is first entirely written 832 // behavior of Orthanc <= 1.9.3: The ZIP is first entirely written
833 // to a temporary file, then sent to the client (which necessitates 833 // to a temporary file, then sent to the client (which necessitates
834 // disk space and might lead to HTTP timeouts on large archives). If 834 // disk space and might lead to HTTP timeouts on large archives). If
835 // set to "true", the chunks of the ZIP file are progressively sent 835 // set to "true", the chunks of the ZIP file are progressively sent
836 // as soon as one DICOM file gets compressed (new in Orthanc 1.9.4) 836 // as soon as one DICOM file gets compressed (new in Orthanc 1.9.4)
837 "SynchronousZipStream" : true 837 "SynchronousZipStream" : true,
838
839 // Default number of loader threads when generating Zip archive/media.
840 // A value of 0 means reading and writing are performed in sequence
841 // (default behaviour). A value > 1 is meaningfull only if the storage
842 // is a distributed network storage (e.g object storage plugin).
843 // (new in Orthanc 1.9.8)
844 "ZipLoaderThreads": 0
838 } 845 }