quick_search/config_example.toml

16 lines
554 B
TOML
Raw Normal View History

2025-09-11 14:08:46 -04:00
[paths]
default_indexing_path = "C:\\"
database_path = "QuickSearch.db"
[processing]
# Size of hash blocks read from start/end of files (bytes)
hash_length = 4096
# 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"