Is there away to display more than 100 results after performing a lookup via the web interface?
I see the following message “Warning: Your lookup led to many results! Showing only 100 studies to avoid performance issue. Please make your query more specific, then relaunch the lookup.”
// Maximum number of query/retrieve DICOM requests that are
// maintained by Orthanc. The least recently used requests get
// deleted as new requests are issued.
“QueryRetrieveSize” : 100,
I was looking through the source code for explorer, and there is a constant defined there called:
var LIMIT_RESOURCES = 100;
Not sure if there is a way to change that via a config setting or via the web interface. If you are a developer, you can see that Do Lookup requests have the format of:
where the limit is LIMIT_RESOURCES + 1. You can even manually set LIMIT_RESOURCES in the console.
There are a couple of other config options in the config file, but I don’t think those affect the Explorer interface.
// The maximum number of results for a single C-FIND request at the
// Patient, Study or Series level. Setting this option to “0” means
// no limit.
“LimitFindResults” : 0,
// The maximum number of results for a single C-FIND request at the
// Instance level. Setting this option to “0” means no limit.
“LimitFindInstances” : 0,