comparison Resources/Configuration.json @ 2620:1232922c8793 jobs

speeding up shutdown if Lua script is in trailing phase
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 22 May 2018 14:08:57 +0200
parents 2e879c796ec7
children 5469dda691cd
comparison
equal deleted inserted replaced
2619:4ecb79c6e81c 2620:1232922c8793
313 // If this option is set to "false", Orthanc will run in index-only 313 // If this option is set to "false", Orthanc will run in index-only
314 // mode. The DICOM files will not be stored on the drive. Note that 314 // mode. The DICOM files will not be stored on the drive. Note that
315 // this option might prevent the upgrade to newer versions of Orthanc. 315 // this option might prevent the upgrade to newer versions of Orthanc.
316 "StoreDicom" : true, 316 "StoreDicom" : true,
317 317
318 // DICOM associations are kept open as long as new DICOM commands 318 // DICOM associations initiated by Lua scripts are kept open as long
319 // are issued. This option sets the number of seconds of inactivity 319 // as new DICOM commands are issued. This option sets the number of
320 // to wait before automatically closing a DICOM association. If set 320 // seconds of inactivity to wait before automatically closing a
321 // to 0, the connection is closed immediately. 321 // DICOM association used by Lua. If set to 0, the connection is
322 // closed immediately.
322 "DicomAssociationCloseDelay" : 5, 323 "DicomAssociationCloseDelay" : 5,
323 324
324 // Maximum number of query/retrieve DICOM requests that are 325 // Maximum number of query/retrieve DICOM requests that are
325 // maintained by Orthanc. The least recently used requests get 326 // maintained by Orthanc. The least recently used requests get
326 // deleted as new requests are issued. 327 // deleted as new requests are issued.
374 "Dictionary" : { 375 "Dictionary" : {
375 // "0014,1020" : [ "DA", "ValidationExpiryDate", 1, 1 ] 376 // "0014,1020" : [ "DA", "ValidationExpiryDate", 1, 1 ]
376 // "00e1,10c2" : [ "UI", "PET-CT Multi Modality Name", 1, 1, "ELSCINT1" ] 377 // "00e1,10c2" : [ "UI", "PET-CT Multi Modality Name", 1, 1, "ELSCINT1" ]
377 // "7053,1003" : [ "ST", "Original Image Filename", 1, 1, "Philips PET Private Group" ] 378 // "7053,1003" : [ "ST", "Original Image Filename", 1, 1, "Philips PET Private Group" ]
378 // "2001,5f" : [ "SQ", "StackSequence", 1, 1, "Philips Imaging DD 001" ] 379 // "2001,5f" : [ "SQ", "StackSequence", 1, 1, "Philips Imaging DD 001" ]
379 } 380 },
381
382 // Maximum number of completed jobs that are kept in memory. A
383 // processing job is considered as complete once it is tagged as
384 // "Success" or "Failure".
385 "JobsHistorySize" : 10
380 } 386 }