Skip to content

ilirhushi/mysql-swedish-stopwords

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

mysql-swedish-stopwords

Full-Text MySQL Stopwords for Swedish language

  1. Create a table to store your keywords
CREATE TABLE sv_stopwords
(
    value VARCHAR(30)
) ENGINE = INNODB;
  1. run the mysql script to insert the stopwords: insert_stopwords.mysql
  2. then run mysql > SET GLOBAL innodb_ft_server_stopword_table = 'database_name/sv_stopwords'; (you need admin privileges to run this command on database)

Releases

No releases published

Packages

No packages published