comparison OrthancServer/Resources/Configuration.json @ 4810:7afbb54bd028

merge storage-cache
author Alain Mazy <am@osimis.io>
date Tue, 23 Nov 2021 09:22:11 +0100
parents 034346bca698 96ab170294fd
children 275bc6769d60
comparison
equal deleted inserted replaced
4809:2ca4213fb50a 4810:7afbb54bd028
38 38
39 // Maximum number of patients that can be stored at a given time 39 // Maximum number of patients that can be stored at a given time
40 // in the storage (a value of "0" indicates no limit on the number 40 // in the storage (a value of "0" indicates no limit on the number
41 // of patients) 41 // of patients)
42 "MaximumPatientCount" : 0, 42 "MaximumPatientCount" : 0,
43 43
44 // Maximum size of the storage cache in MB. The storage cache
45 // is stored in RAM and contains a copy of recently accessed
46 // files (written or read). A value of "0" indicates the cache
47 // is disabled. (new in Orthanc 1.9.8)
48 "MaximumStorageCacheSize" : 128,
49
44 // List of paths to the custom Lua scripts that are to be loaded 50 // List of paths to the custom Lua scripts that are to be loaded
45 // into this instance of Orthanc 51 // into this instance of Orthanc
46 "LuaScripts" : [ 52 "LuaScripts" : [
47 ], 53 ],
48 54
835 // behavior of Orthanc <= 1.9.3: The ZIP is first entirely written 841 // behavior of Orthanc <= 1.9.3: The ZIP is first entirely written
836 // to a temporary file, then sent to the client (which necessitates 842 // to a temporary file, then sent to the client (which necessitates
837 // disk space and might lead to HTTP timeouts on large archives). If 843 // disk space and might lead to HTTP timeouts on large archives). If
838 // set to "true", the chunks of the ZIP file are progressively sent 844 // set to "true", the chunks of the ZIP file are progressively sent
839 // as soon as one DICOM file gets compressed (new in Orthanc 1.9.4) 845 // as soon as one DICOM file gets compressed (new in Orthanc 1.9.4)
840 "SynchronousZipStream" : true 846 "SynchronousZipStream" : true,
847
848 // Default number of loader threads when generating Zip archive/media.
849 // A value of 0 means reading and writing are performed in sequence
850 // (default behaviour). A value > 1 is meaningful only if the storage
851 // is a distributed network storage (e.g object storage plugin).
852 // (new in Orthanc 1.9.8)
853 "ZipLoaderThreads": 0
841 } 854 }