mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 09:49:18 +02:00
sql/*: Add username to peer indexes
The username is available for all MAM queries in question, and adding it to the indexes can improve the lookup performance significantly.
This commit is contained in:
parent
5bf753fd2d
commit
f7566bd00e
7 changed files with 24 additions and 25 deletions
|
@ -113,10 +113,10 @@ CREATE TABLE archive (
|
|||
) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
CREATE FULLTEXT INDEX i_text ON archive(txt);
|
||||
CREATE INDEX i_archive_sh_username_timestamp USING BTREE ON archive(server_host(191), username,timestamp);
|
||||
CREATE INDEX i_archive_sh_username_timestamp USING BTREE ON archive(server_host(191), username, timestamp);
|
||||
CREATE INDEX i_archive_sh_username_peer USING BTREE ON archive(server_host(191), username, peer);
|
||||
CREATE INDEX i_archive_sh_username_bare_peer USING BTREE ON archive(server_host(191), username, bare_peer);
|
||||
CREATE INDEX i_archive_sh_timestamp USING BTREE ON archive(server_host(191), timestamp);
|
||||
CREATE INDEX i_archive_sh_peer USING BTREE ON archive(server_host(191), peer);
|
||||
CREATE INDEX i_archive_sh_bare_peer USING BTREE ON archive(server_host(191), bare_peer);
|
||||
|
||||
CREATE TABLE archive_prefs (
|
||||
username varchar(191) NOT NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue