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
- Host: GitHub
- URL: https://github.com/ilirhushi/mysql-swedish-stopwords
- Owner: ilirhushi
- Created: 2019-11-12T15:38:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-15T13:50:43.000Z (over 6 years ago)
- Last Synced: 2025-02-14T18:18:17.554Z (over 1 year ago)
- Topics: full-text, full-text-search, mysql, stopwords, swedish
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)