1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-04 21:44:57 +02:00

[feature/sphinx-fulltext-search] add binlog_path to config

binlog files are now added to the data folder.

PHPBB3-10946
This commit is contained in:
Dhruv Goel 2012-07-10 01:49:38 +05:30 committed by Dhruv
parent 39f8a5fa9f
commit 10b706674e
2 changed files with 2 additions and 0 deletions

View File

@ -93,4 +93,5 @@ searchd
max_children = 30
pid_file = {DATA_PATH}/searchd.pid
max_matches = 20000
binlog_path = {DATA_PATH}
}

View File

@ -315,6 +315,7 @@ class phpbb_search_fulltext_sphinx
array('max_children', '30'),
array('pid_file', $config['fulltext_sphinx_data_path'] . "searchd.pid"),
array('max_matches', (string) MAX_MATCHES),
array('binlog_path', $config['fulltext_sphinx_data_path']),
),
);