cancel
Showing results for 
Search instead for 
Did you mean: 

Aspect DoNotIndex

hpalma
Champ in-the-making
Champ in-the-making
Hi,
i've found references to a so called DoNotIndex aspect in two presentations, http://www.slideshare.net/toniblyx/alfresco-enterprise-escalabilidad-y-tuning and http://www.slideshare.net/alfresco/scale-your-alfresco-solutions.

But, i can't any reference to it anywhere else on how to use it.
Any ideas ?

Thanks.
2 REPLIES 2

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

You have to do custom code to do this….

In the next release you will find:

    <aspect name="cm:indexControl">
         <title>Index Control</title>
         <properties>
            <property name="cm:isIndexed">
               <title>Is indexed</title>
               <type>d:boolean</type>
            </property>
            <property name="cm:isContentIndexed">
               <title>Is content indexed</title>
               <type>d:boolean</type>
            </property>
         </properties>
      </aspect>

This will be fully supported in Alfresco.

Alfresco will also support the temporary suspension of content indexing for bulk ingestion by transaction happy routes such as CIFS and FTP.
(This will not apply to AVM)

Andy

hpalma
Champ in-the-making
Champ in-the-making
Thanks for the clarification.