Values for indexing flags in dtsIndexJob
enum IndexingFlags { dtsAlwaysAdd = 0x0001, dtsCheckDiskSpace = 0x0002, dtsIndexCreateCaseSensitive = 0x0004, dtsIndexCreateAccentSensitive = 0x0008, dtsIndexCreateRelativePaths = 0x0010, dtsIndexResumeUpdate = 0x0020, dtsIndexCacheText = 0x0040, dtsIndexCacheOriginalFile = 0x0080, dtsIndexCreateVersion6 = 0x00100, dtsIndexCacheTextWithoutFields = 0x00200, dtsIndexKeepExistingDocIds = 0x00400 };
dtsearch.h
|
Members |
Description |
|
dtsAlwaysAdd = 0x0001 |
Reindex a document even if the modification date and size are unchanged. |
|
dtsCheckDiskSpace = 0x0002 |
Check for sufficient disk space before indexing. In the C++ API only, this flag will cause a dtsAskDiskFullOverride message to be sent through the error handler callback (dtsErrorHandler.pNotifyFn) giving the calling application the option to cancel the update. |
|
dtsIndexCreateCaseSensitive = 0x0004 |
Can be used in indexingFlags instead of the createFlags |
|
dtsIndexCreateAccentSensitive = 0x0008 |
Create an access-sensitive index. |
|
dtsIndexCreateRelativePaths = 0x0010 |
Use relative rather than absolute paths in storing document locations. |
|
dtsIndexResumeUpdate = 0x0020 |
Resume an earlier index update that did not complete. (Version 7 indexes only.) |
|
dtsIndexCacheText = 0x0040 |
Compress and store the text of documents in the index, for use in generating Search Reports and highlighting hits. (This flag must be set when an index is created.) See Caching documents. |
|
dtsIndexCacheOriginalFile = 0x0080 |
Compress and store documents in the index, for use in generating Search Reports and highlighting hits. (This flag must be set when an index is created.) See Caching documents. |
|
dtsIndexCreateVersion6 = 0x00100 |
Create an index in the old version 6 format, supported for backward compatibility |
|
dtsIndexCacheTextWithoutFields = 0x00200 |
When text caching is enabled, do not cache any fields that were provided through the data source API. See Caching documents. |
|
dtsIndexKeepExistingDocIds = 0x00400 |
Preserve existing document ids following a compression of an index or a merge of two or more indexes. |
|
Copyright (c) 1995-2012 dtSearch Corp. All rights reserved.
|