diff options
author | unknown <serg@serg.mysql.com> | 2000-10-16 21:06:28 +0200 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2000-10-16 21:06:28 +0200 |
commit | a5e2a0258042d2908e2d641485b66ae5abe1de26 (patch) | |
tree | 20a1a259ff64e1dbbf01a2f019cdb15e5931c4f0 /Docs | |
parent | 7c96a2529062295ef2379fbd4e387cbc5e5e0b7c (diff) | |
download | mariadb-git-a5e2a0258042d2908e2d641485b66ae5abe1de26.tar.gz |
manual.texi Added an explanation to the end of FULLTEXT section
Docs/manual.texi:
Added an explanation to the end of FULLTEXT section
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/manual.texi | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index ccc6da16ddd..eaee699a562 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -837,7 +837,7 @@ Changes in release 3.23.x (Recommended; beta) * News-3.23.4:: Changes in release 3.23.4 * News-3.23.3:: Changes in release 3.23.3 * News-3.23.2:: Changes in release 3.23.2 -* News-3.23.1:: +* News-3.23.1:: * News-3.23.0:: Changes in release 3.23.0 Changes in release 3.22.x @@ -24699,7 +24699,7 @@ master-slave relationship with @code{log-slave-updates} enabled. Note, however, that many queries will not work right in this kind of setup unless your client code is written to take care of the potential problems that can happen from updates that occur in different sequence -on different servers. Note that the log format has changed in 3.23.26 +on different servers. Note that the log format has changed in 3.23.26 so that pre-3.23.26 slaves will not be able to read it. @item If the query on the slave gets an error, the slave thread will @@ -24739,7 +24739,7 @@ Starting in 3.23.19 you can clean up stale replication leftovers when something goes wrong and you want a clean start with @code{FLUSH MASTER} and @code{FLUSH SLAVE} commands. In 3.23.26 we have renamed them to @code{RESET MASTER} and @code{RESET SLAVE} respectively to clarify -what they do. The old @code{FLUSH} variants still work, though for +what they do. The old @code{FLUSH} variants still work, though for compatibility. @item @@ -24920,7 +24920,7 @@ index file to be empty. In pre-3.23.26 versions, @code{FLUSH MASTER} (Master) @item @code{RESET SLAVE} @tab Makes the slave forget its replication position in the master -logs. In pre 3.23.26 versions the command was called +logs. In pre 3.23.26 versions the command was called @code{FLUSH SLAVE}(Slave) @item @code{LOAD TABLE tblname FROM MASTER} @@ -36507,6 +36507,18 @@ carefully tuned up this way). For very small tables, word distribution does not reflect adequately their semantical value, and this model may sometimes produce bizarre results. +For example search for the word "search" will produce no results in the +above example. Word "search" is present in more than half of rows, and +as, such, is effectively treated as stopword (i.e. with semantical value +zero). It is, really, the desired behaviour - natural language query +should not return every second row in 1GB table. + +The word that select 50% of rows has low ability to locate relevant +documents (and will find plenty of unrelevant documents also - we all +know this happen too often when we are trying to find something in Internet +with search engine), and, as such, has low semantical value in @strong{this +particular dataset}. + @page @cindex environment variables, list of @node Environment variables, Users, MySQL internals, Top |