mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-23 00:32:57 +02:00
- added a UNIQUE index on the wordmatch table
- some modifications of search indexing which might improve the speed and hopefully fixes [Bug #8352] - added logging to search indexing [Bug #8384] git-svn-id: file:///svn/phpbb/trunk@7119 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -1260,7 +1260,8 @@ END;
|
||||
CREATE TABLE phpbb_search_wordmatch (
|
||||
post_id number(8) DEFAULT '0' NOT NULL,
|
||||
word_id number(8) DEFAULT '0' NOT NULL,
|
||||
title_match number(1) DEFAULT '0' NOT NULL
|
||||
title_match number(1) DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT u_phpbb_unique_match UNIQUE (word_id, post_id, title_match)
|
||||
)
|
||||
/
|
||||
|
||||
|
Reference in New Issue
Block a user