假設想要讓 binding 不做 stemming
en_US.dic 中把 G rule拿掉
bind/AUGS -> bind/AUS
G rule in en_US.aff
SFX G e ing e
SFX G 0 ing
GET myindex/_analyze
{
"field": "title",
"text": "binding"
}
{
"tokens" : [
{
"token" : "binding",
"start_offset" : 0,
"end_offset" : 7,
"type" : "word",
"position" : 0
},
{
"token" : "bind",
"start_offset" : 0,
"end_offset" : 7,
"type" : "word",
"position" : 0
}
]
}
After
GET myindex/_analyze
{
"field": "title",
"text": "binding"
}
{
"tokens" : [
{
"token" : "binding",
"start_offset" : 0,
"end_offset" : 7,
"type" : "word",
"position" : 0
}
]
}
沒有留言:
張貼留言