16 lines
No EOL
573 B
TOML
16 lines
No EOL
573 B
TOML
[paths]
|
|
default_indexing_path = "C:\\"
|
|
database_path = "QuickSearch.db"
|
|
|
|
[processing]
|
|
# Amount of data in bytes read from start/end of files used to calculate hash
|
|
hash_length = 8192
|
|
# Maximum text content to index per file (bytes)
|
|
maximum_text_size = 524288
|
|
# Maximum file size to process for text extraction (bytes)
|
|
maximum_file_size = 52428800
|
|
# Number of files to process in each batch
|
|
batch_size = 200
|
|
# FTS5 tokenization method (e.g., 'trigram', 'porter', 'unicode61')
|
|
# Look here for more information https://www.sqlite.org/fts5.html#tokenizers
|
|
tokenize = "trigram" |