cancel
Showing results for 
Search instead for 
Did you mean: 

Indexing Disable in Labs 3.0

dseybert
Champ in-the-making
Champ in-the-making
Does anyone know of a way to disable either the entire Content Indexing or Full Text Indexing during operation.  Currently we have a server where in the operation of the day to day functions, our SMB / CIFS connection becomes completely un usable and unstable.  We just migrated 150 GB of data into the system, which is bogging the system down, and from what i can tell causing issues with CIFS.  Please advise.
Thanks.
Doug
1 REPLY 1

abarisone
Star Contributor
Star Contributor
HI,
from Alfresco 4.0.d on it is possible to control indexing on a particular content type exploiting the cm:indexControl aspect, provided with basic contentModel.xml:
<!–                  –>
      <!– Indexing control –>
      <!–                  –>
     
      <aspect name="cm:indexControl">
         <title>Index Control</title>
         <properties>
            <property name="cm:isIndexed">
               <title>Is indexed</title>
               <type>d:boolean</type>
               <default>true</default>
            </property>
            <property name="cm:isContentIndexed">
               <title>Is content indexed</title>
               <type>d:boolean</type>
               <default>true</default>
            </property>
         </properties>
      </aspect>
Hope this helps.
Regards,
Andrea