comparison Resources/Configuration.json @ 3015:abe49ca61cd5

On C-FIND, avoid accessing the storage area whenever possible
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 14 Dec 2018 12:10:03 +0100
parents 9cc3d40e389b
children 095193bbd7b9
comparison
equal deleted inserted replaced
3014:b9f0b0c0b36f 3015:abe49ca61cd5
382 "Pin" : "1234", 382 "Pin" : "1234",
383 "Verbose" : true 383 "Verbose" : true
384 } 384 }
385 **/ 385 **/
386 386
387 // If set to "true", Orthanc will still handle "SOP Classes in
388 // Study" (0008,0062) in C-FIND requests, even if the "SOP Class
389 // UID" metadata is not available in the database (which is the case
390 // if the DB was previously used by Orthanc <= 1.1.0). This option
391 // is turned off by default, as it requires intensive accesses to
392 // the hard drive.
393 "AllowFindSopClassesInStudy" : false,
394
395 // If set to "false", Orthanc will not load its default dictionary 387 // If set to "false", Orthanc will not load its default dictionary
396 // of private tags. This might be necessary if you cannot import a 388 // of private tags. This might be necessary if you cannot import a
397 // DICOM file encoded using the Implicit VR Endian transfer syntax, 389 // DICOM file encoded using the Implicit VR Endian transfer syntax,
398 // and containing private tags: Such an import error might stem from 390 // and containing private tags: Such an import error might stem from
399 // a bad dictionary. You can still list your private tags of 391 // a bad dictionary. You can still list your private tags of
445 // Maximum number of ZIP/media archives that are maintained by 437 // Maximum number of ZIP/media archives that are maintained by
446 // Orthanc, as a response to the asynchronous creation of archives. 438 // Orthanc, as a response to the asynchronous creation of archives.
447 // The least recently used archives get deleted as new archives are 439 // The least recently used archives get deleted as new archives are
448 // generated. This option was introduced in Orthanc 1.5.0, and has 440 // generated. This option was introduced in Orthanc 1.5.0, and has
449 // no effect on the synchronous generation of archives. 441 // no effect on the synchronous generation of archives.
450 "MediaArchiveSize" : 1 442 "MediaArchiveSize" : 1,
443
444 // Performance setting to specify how Orthanc accesses the storage
445 // area during C-FIND. Three modes are available: (1) "Always"
446 // allows Orthanc to read the storage area as soon as it needs an
447 // information that is not present in its database (slowest mode),
448 // (2) "Never" prevents Orthanc from accessing the storage area, and
449 // makes it uses exclusively its database (fastest mode), and (3)
450 // "Answers" allows Orthanc to read the storage area to generate its
451 // answers, but not to filter the DICOM resources (balance between
452 // the two modes). By default, the mode is "Always", which
453 // corresponds to the behavior of Orthanc <= 1.5.0.
454 "StorageAccessOnFind" : "Always"
451 } 455 }