dtSearch Text Retrieval Engine .NET interface

IndexingFlags Enumeration

Values for IndexJob.Flags

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

public enum IndexingFlags

Members

Member Name Description Value
dtsIndexCreateVersion7 Create an index using the version 7 index format. Version 7 indexes are created by default in versions after 7.0, so this flag is no longer needed. 268435456
dtsIndexKeepExistingDocIds When compressing an index, do not remap document ids, so document ids will be unmodified in the index once compression is done. 1024
dtsIndexCacheTextWithoutFields When text caching is enabled, do not cache any fields that were provided through the data source API (in DocFields). 512
dtsIndexCacheOriginalFile Compress and store documents in the index, for use in generating Search Reports and highlighting hits. (Version 7 indexes only.) 128
dtsIndexCacheText Compress and store the text of documents in the index, for use in generating Search Reports and highlighting hits. (Version 7 indexes only.) 64
dtsIndexResumeUpdate Resume an earlier index update that did not complete. (Version 7 indexes only.) 32
dtsIndexCreateRelativePaths Use relative rather than absolute paths in storing document locations. 16
dtsIndexCreateAccentSensitive Create an access-sensitive index. 8
dtsIndexCreateCaseSensitive Create a case-sensitive index. Index will treat words with different capitalization as different words. (apple and Apple would be two different words.) 4
dtsAlwaysAdd Index every document specified in the IndexJob, even if the document is already in the index with the same modification date and size 1

Requirements

Namespace: dtSearch.Engine

Assembly: dtSearchNetApi (in dtSearchNetApi.dll)

See Also

dtSearch.Engine Namespace