Indexation
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2006 03:23 AM
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
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
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2006 04:36 AM
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.
Regards
Andy
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
