comparison Sphinx/source/plugins/indexer.rst @ 779:15f017e7555b

remarks about folder indexer plugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 24 Sep 2021 16:54:15 +0200
parents 4707c55080c8
children 8e5e868e6369
comparison
equal deleted inserted replaced
778:4707c55080c8 779:15f017e7555b
63 Here is a minimal sample :ref:`configuration file <configuration>` to 63 Here is a minimal sample :ref:`configuration file <configuration>` to
64 use this plugin:: 64 use this plugin::
65 65
66 { 66 {
67 "Plugins" : [ 67 "Plugins" : [
68 "/home/user/OrthancTcia/Build/libOrthancTcia.so" 68 "/home/user/OrthancIndexer/Build/libOrthancIndexer.so"
69 ], 69 ],
70 "Indexer" : { 70 "Indexer" : {
71 "Enable" : true, 71 "Enable" : true,
72 "Folders" : [ "/home/user/DICOM" ], // List of folders to synchronize 72 "Folders" : [ "/home/user/DICOM" ], // List of folders to synchronize
73 "Interval" : 10 // Delay between two synchronizations 73 "Interval" : 10 // Delay between two synchronizations
79 79
80 Once Orthanc is started, the folders are transparently synchronized 80 Once Orthanc is started, the folders are transparently synchronized
81 without any further interaction. You can start Orthanc with the 81 without any further interaction. You can start Orthanc with the
82 ``--verbose-plugins`` command-line option in order to monitor the 82 ``--verbose-plugins`` command-line option in order to monitor the
83 synchronization process. 83 synchronization process.
84
85 Some remarks:
86
87 * This plugin cannot be used together with other custom storage area
88 plugins (such as :ref:`cloud object storage <object-storage>`).
89
90 * Even if the folder indexer plugin is in use, you can still add other
91 DICOM files using the :ref:`REST API <rest>` or the :ref:`DICOM
92 network protocol <dicom-protocol>`.
93