We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PUT articles { "mappings": { "properties": { "id": { "type": "keyword" }, "user_id": { "type": "keyword" }, "user_name": { "type": "keyword" }, "title": { "type": "text" }, "url": { "type": "text" }, "due_date": { "type": "date" }, "category": { "type": "keyword" }, "description": { "type": "text" }, "tags": { "type": "keyword" }, "content": { "type": "text", "analyzer": "korean_analyzer", "fields": { "english": { "type": "text", "analyzer": "standard" } } }, "created_at": { "type": "date" }, "updated_at": { "type": "date" } } }, "settings": { "analysis": { "analyzer": { "korean_analyzer": { "type": "custom", "tokenizer": "nori_tokenizer", "filter": [ "kr_stop_filter" ] } }, "tokenizer": { "nori_tokenizer": { "type": "nori_tokenizer", "decompound_mode": "mixed", "discard_punctuation": "true" } }, "filter": { "kr_stop_filter": { "type": "nori_part_of_speech", "stoptags": [ "E", "IC", "J", "MAG", "MM", "NA", "NR", "SC", "SE", "SF", "SH", "SL", "SN", "SP", "SSC", "SSO", "SY", "UNA", "UNKNOWN", "VA", "VCN", "VCP", "VSV", "VV", "VX", "XPN", "XR", "XSA", "XSN", "XSV" ] } } } } }
The text was updated successfully, but these errors were encountered:
dldydtjs2965
No branches or pull requests
개요
개발 설계
인덱싱 플로우
인덱스 설계
인덱스 매핑 구조
인덱스 생성 명령어
The text was updated successfully, but these errors were encountered: