Data dictionary options - index
참고자료: http://wiki.alfresco.com/wiki/Full-Text_Search_Configuration
각 프로퍼티의 인덱싱 행위는 컨텐츠 모델에서 설정될 수 있다. 기본적으로 원자적으로 인덱싱 된다. 프로퍼티 값은 인덱스 안에 저장되지 않고, 프로퍼티는 인덱싱 될 때, 토큰화 된다.
The following example shows how indexing can be controlled.
Enabled="false"
false 이면, 인덱스에 이 프로퍼티를 위한 엔트리는 없다.
Atomic="true"
true 이면, 프로퍼티는 트랜잭션 내에서 인덱싱되며, false 이면 프로퍼티는 백그라운드에서 인덱싱 된다.
(Indexing of content that requires transformation before being indexed (e.g. PDFs) will only obey Atomic=true if the transformation takes less time than the value specified for lucene.maxAtomicTransformationTime. See #General.)
Stored="true"
true 이면, 프로퍼티 값은 인덱스 내에 저장되고, 루씬 로우 레벨 쿼리 API를 통해 얻을 수 있다.
(This can be useful while debugging systems to see exactly what is being indexed, but do not set this to true on production systems.)
Tokenised="true"
"true" 이면, 프로퍼티의 문자열 값은 인덱싱 전에 토큰화 된다.
"false" 이면, 단일 문자열로 인덱싱 된다.
"both" 이면, 두 가지 형태로 인덱에 존재하기 된다.