File Loading and Caching (Tokens)
| Token Name | Type | Default Value | Accepted Values | Category | Description |
|---|---|---|---|---|---|
| BytesCacheMustLeaveFreeOnDisk | UNSIGNED LONG | 536870912 | 0 to ULLONG_MAX, inclusive | File Loading and Caching | Reserves space on disk that the cache will not be allowed to consume. |
| FileContentsCacheCopyRetryCount | UNSIGNED INT | 16 | 0 to UINT_MAX, inclusive | File Loading and Caching | Number of attempts the system will try to cache files due to disk contention. |
| FileContentsCacheCopyRetryPause | UNSIGNED INT | 500 | 0 to UINT_MAX, inclusive | File Loading and Caching | Number of milliseconds the system will wait before retrying to save a cached file. |
| FileContentsCacheFilenameBase | STRING | data/ | N/A | File Loading and Caching | Every file to be cached must contain this string in its path. NOTE: This might be a good candidate for deprecation. |
| FileContentsCacheLocation | STRING | C:/pc-nova/cache/ | N/A | File Loading and Caching | The location where DB files will be cached to. |
| FileContentsCacheMaxFileSize | UNSIGNED LONG | 268435456 | 0 to ULLONG_MAX, inclusive | File Loading and Caching | The maximum size of a file allowed to be cached (not the size of the cache). A value of 0 will cause no files to be cached. |
| FilenameCacheName | STRING | C:/pc-nova/filenameCache.txt | N/A | File Loading and Caching | The manifest of contents written to the file cache. NOTE: If the cache is manually deleted, this file must be deleted as well, or cache will not be rewritten to. |
| HIEFileLargeFilesAtOnce | INT | 2 | INT_MIN to INT_MAX, inclusive | File Loading and Caching | |
| HIEFileLoadingSize | INT | 900000 | INT_MIN to INT_MAX, inclusive | File Loading and Caching | |
| HIEFileVerification | INT | 0 | INT_MIN to INT_MAX, inclusive | File Loading and Caching | |
| PTOFileLoadingSize | INT | 2097152 | INT_MIN to INT_MAX, inclusive | File Loading and Caching | |
| UseFilenameCache | BOOL | ON | OFF, ON, 1, 0, TRUE, FALSE | File Loading and Caching | Enables the DB file cache to be written out to FileContentsCacheLocation, with a manifest written to FilenameCacheName. |