On this wiki:
http://wiki.alfresco.com/wiki/Full-Text_Search_Configuration
says…
Data dictionary options: The indexing behavior of each property can be set in the content model. By default, they are indexed atomically. The property value is not stored in the index, and the property is tokenized when it is indexed.
I don't understand one thing… By default all the values are indexed?
If they are indexed atomically, it means that if I put
the cm:content is indexed because I don't specify enabled="true"? I must specify enabled="false" for don't index the value?
http://wiki.alfresco.com/wiki/Full-Text_Search_Configuration
says…
Data dictionary options: The indexing behavior of each property can be set in the content model. By default, they are indexed atomically. The property value is not stored in the index, and the property is tokenized when it is indexed.
I don't understand one thing… By default all the values are indexed?
If they are indexed atomically, it means that if I put
<property name="cm:content">
<type>d:content</type>
<mandatory>false</mandatory>
</property>
the cm:content is indexed because I don't specify enabled="true"? I must specify enabled="false" for don't index the value?
Please note that the page you refer to may be obsolete. For example I doubt whether atomic works with solr.
To not index you would specify
or since atomic, stored and tokenized are optional