cancel
Showing results for 
Search instead for 
Did you mean: 

Indexation

jdk
Champ in-the-making
Champ in-the-making
Hello,

I want to know what are the rules of the files indexation (type of file, time of indexation, etc…) and how to configure it.

bye
1 REPLY 1

andy
Champ on-the-rise
Champ on-the-rise
Hi

Some details about a node are indexed inside the transaction some are done in the background. This is set per attribute in the model. The stuff indexed outside the transaction is queued and indexed in the background. How long this takes depends on how much there is to index and how long ? -> text conversions take.

Here is an example how the atomic attribute can be used to control indexing. Set this to false if you want indexing to occur in the background.


      <type name="cm:content">
         <title>Content</title>
         <parent>cm:cmobject</parent>
         <properties>
            <property name="cm:content">
               <type>d:content</type>
               <mandatory>false</mandatory>
               <!— Index content in the background –>
               <index enabled="true">
                  <atomic>false</atomic>                       <!– Indexing controlled here –>
                  <stored>false</stored>
                  <tokenised>true</tokenised>
               </index>
            </property>
         </properties>
      </type>

Regards

Andy