Rechercher dans le manuel MySQL
25.39.14 The INFORMATION_SCHEMA INNODB_FT_CONFIG Table
The INNODB_FT_CONFIG
table provides
metadata about the FULLTEXT
index and
associated processing for an InnoDB
table.
This table is empty initially. Before querying it, set the value
of the innodb_ft_aux_table
system
variable to the name (including the database name) of the table
that contains the FULLTEXT
index (for example,
test/articles
).
For related usage information and examples, see Section 15.14.4, “InnoDB INFORMATION_SCHEMA FULLTEXT Index Tables”.
The INNODB_FT_CONFIG
table has these
columns:
KEY
The name designating an item of metadata for an
InnoDB
table containing aFULLTEXT
index.The values for this column might change, depending on the needs for performance tuning and debugging for
InnoDB
full-text processing. The key names and their meanings include:optimize_checkpoint_limit
: The number of seconds after which anOPTIMIZE TABLE
run stops.synced_doc_id
: The nextDOC_ID
to be issued.stopword_table_name
: Thedatabase/table
name for a user-defined stopword table. TheVALUE
column is empty if there is no user-defined stopword table.use_stopword
: Indicates whether a stopword table is used, which is defined when theFULLTEXT
index is created.
VALUE
The value associated with the corresponding
KEY
column, reflecting some limit or current value for an aspect of aFULLTEXT
index for anInnoDB
table.
Example
- +---------------------------+-------------------+
- +---------------------------+-------------------+
- | optimize_checkpoint_limit | 180 |
- | synced_doc_id | 0 |
- | stopword_table_name | test/my_stopwords |
- | use_stopword | 1 |
- +---------------------------+-------------------+
Notes
This table is intended only for internal configuration. It is not intended for statistical information purposes.
You must have the
PROCESS
privilege to query this table.Use the
INFORMATION_SCHEMA
COLUMNS
table or theSHOW COLUMNS
statement to view additional information about the columns of this table, including data types and default values.For more information about
InnoDB
FULLTEXT
search, see Section 15.6.2.4, “InnoDB FULLTEXT Indexes”, and Section 12.9, “Full-Text Search Functions”.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-innodb-ft-config-table.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.