組み込みアナライザーの設定
組み込みアナライザーは、特に設定を行わずに直接使用できます。ただし、一部は動作を変更するための設定オプションをサポートしています。たとえば、standard
アナライザーは、ストップワードのリストをサポートするように設定できます:
Python
resp = client.indices.create(
index="my-index-000001",
settings={
"analysis": {
"analyzer": {
"std_english": {
"type": "standard",
"stopwords": "_english_"
}
}
}
},
mappings={
"properties": {
"my_text": {
"type": "text",
"analyzer": "standard",
"fields": {
"english": {
"type": "text",
"analyzer": "std_english"
}
}
}
}
},
)
print(resp)
resp1 = client.indices.analyze(
index="my-index-000001",
field="my_text",
text="The old brown cow",
)
print(resp1)
resp2 = client.indices.analyze(
index="my-index-000001",
field="my_text.english",
text="The old brown cow",
)
print(resp2)
Ruby
response = client.indices.create(
index: 'my-index-000001',
body: {
settings: {
analysis: {
analyzer: {
std_english: {
type: 'standard',
stopwords: '_english_'
}
}
}
},
mappings: {
properties: {
my_text: {
type: 'text',
analyzer: 'standard',
fields: {
english: {
type: 'text',
analyzer: 'std_english'
}
}
}
}
}
}
)
puts response
response = client.indices.analyze(
index: 'my-index-000001',
body: {
field: 'my_text',
text: 'The old brown cow'
}
)
puts response
response = client.indices.analyze(
index: 'my-index-000001',
body: {
field: 'my_text.english',
text: 'The old brown cow'
}
)
puts response
Js
const response = await client.indices.create({
index: "my-index-000001",
settings: {
analysis: {
analyzer: {
std_english: {
type: "standard",
stopwords: "_english_",
},
},
},
},
mappings: {
properties: {
my_text: {
type: "text",
analyzer: "standard",
fields: {
english: {
type: "text",
analyzer: "std_english",
},
},
},
},
},
});
console.log(response);
const response1 = await client.indices.analyze({
index: "my-index-000001",
field: "my_text",
text: "The old brown cow",
});
console.log(response1);
const response2 = await client.indices.analyze({
index: "my-index-000001",
field: "my_text.english",
text: "The old brown cow",
});
console.log(response2);
コンソール
PUT my-index-000001
{
"settings": {
"analysis": {
"analyzer": {
"std_english": {
"type": "standard",
"stopwords": "_english_"
}
}
}
},
"mappings": {
"properties": {
"my_text": {
"type": "text",
"analyzer": "standard",
"fields": {
"english": {
"type": "text",
"analyzer": "std_english"
}
}
}
}
}
}
POST my-index-000001/_analyze
{
"field": "my_text",
"text": "The old brown cow"
}
POST my-index-000001/_analyze
{
"field": "my_text.english",
"text": "The old brown cow"
}
std_english アナライザーは、standard アナライザーに基づいて定義されていますが、事前に定義された英語のストップワードリストを削除するように設定されています。 |
|
my_text フィールドは、設定なしでstandard アナライザーを直接使用します。このフィールドからはストップワードは削除されません。結果として得られる用語は: [ the, old, brown, cow ] |
|
my_text.english フィールドはstd_english アナライザーを使用しているため、英語のストップワードが削除されます。結果として得られる用語は:[ old, brown, cow ] |