DB 41

[ MYSQL ] FULLTEXT Search

파라미터 변경 ngram_token = 2 innodb_ft_min_token_size = 2 ft_min_word_len = 2 적용확인 show variables like 'ft_min%'; show variables like 'innodb_ft_min%'; 검색 인덱스 추가 ALTER TABLE MANUAL ADD FULLTEXT(칼럼명); 조회 쿼리 SELECT 칼럼, MATCH (칼럼) AGAINST ('키워드*' IN BOOLEAN MODE) AS score FROM 테이블 ORDER BY score desc; SELECT manual_title, ( ((LENGTH(manual_title) - LENGTH((REPLACE(manual_title, '관리', '')))) / LENGTH('관리..

DB/MYSQL HEON.D 2022.01.12

[ MongoDB ] mongorestore

Mongo CLI 설치 brew tap mongodb/brew brew install mongodb-community@5.0 mongodb-database-tools는 내장되어있지만 추가 설치가 필요한 경우 brew install mongodb-database-tools Brew Install 실패하는 경우 Error: Permission denied @ apply2files - /usr/local/lib/docker/cli-plugins mkdir -p /Applications/Docker.app/Contents/Resources/cli-plugins brew cleanup mongod "error":"NonExistentPath: Data directory /data/db not found. Mac ..

DB/MongoDB HEON.D 2021.12.24