comparison Resources/Configuration.json @ 941:83489fddd8c5

Options to limit the number of results for an incoming C-FIND query
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 25 Jun 2014 11:08:11 +0200
parents b79eda29896d
children 3fb427ac3f53 8c67382f44a7
comparison
equal deleted inserted replaced
940:4864b3e304be 941:83489fddd8c5
158 158
159 // When the following option is "true", the MD5 of the DICOM files 159 // When the following option is "true", the MD5 of the DICOM files
160 // will be computed and stored in the Orthanc database. This 160 // will be computed and stored in the Orthanc database. This
161 // information can be used to detect disk corruption, at the price 161 // information can be used to detect disk corruption, at the price
162 // of a small performance overhead. 162 // of a small performance overhead.
163 "StoreMD5ForAttachments" : true 163 "StoreMD5ForAttachments" : true,
164
165 // The maximum number of results for a single C-FIND request at the
166 // Patient, Study or Series level. Setting this option to "0" means
167 // no limit.
168 "LimitFindResults" : 0,
169
170 // The maximum number of results for a single C-FIND request at the
171 // Instance level. Setting this option to "0" means no limit.
172 "LimitFindInstances" : 0
164 } 173 }