An open API service indexing awesome lists of open source software.

https://github.com/ilirhushi/mysql-swedish-stopwords


https://github.com/ilirhushi/mysql-swedish-stopwords

full-text full-text-search mysql stopwords swedish

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# 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;
```

2. run the mysql script to insert the stopwords: `insert_stopwords.mysql`
3. then run mysql > `SET GLOBAL innodb_ft_server_stopword_table = 'database_name/sv_stopwords';` (you need admin privileges to run this command on database)