diff options
author | pav <pav@FreeBSD.org> | 2008-04-07 01:57:03 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2008-04-07 01:57:03 +0800 |
commit | 0f99ac67da72b4acf34bfe901e99e9d0b5b9d9e1 (patch) | |
tree | d03116966a199fa8ee5546e12d2052946cd3ab90 /databases/Makefile | |
parent | 0a041d201124605f73e2000eef07d80d9bc6b5b4 (diff) | |
download | freebsd-ports-gnome-0f99ac67da72b4acf34bfe901e99e9d0b5b9d9e1.tar.gz freebsd-ports-gnome-0f99ac67da72b4acf34bfe901e99e9d0b5b9d9e1.tar.zst freebsd-ports-gnome-0f99ac67da72b4acf34bfe901e99e9d0b5b9d9e1.zip |
MySQL has fulltext index search ability for text field. but it is word
based index, it cannot be used for no word delimiter laungage like
Japanese or Chinese. and it also can't search charactors in middle of
a words. (cf. searching 'in' will not match word 'ping'.)
Starts from MySQL 5.1, MySQL supports a plugin that allows to change
server components (fulltext search parser) without restarting /
recompiling the server.
This n-gram parser uses this plugin interface to implement a simple
n-gram (bi-gram) fulltext index parser which can be index no word
delimiter laungage.
WWW: http://mysqlbigram.googlepages.com/
PR: ports/115051
Submitted by: Gea-Suan Lin <gslin@gslin.org>
Diffstat (limited to 'databases/Makefile')
-rw-r--r-- | databases/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 8739d5f8925d..cd9e9db3b224 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -171,6 +171,7 @@ SUBDIR += mysql51-server SUBDIR += mysql_last_value SUBDIR += mysqlard + SUBDIR += mysqlbigram SUBDIR += mysqlcc SUBDIR += mysqlcppapi SUBDIR += mysqlman |