I am Trying to index and search for Special characters in elastic search
I used White space tokenizer and i am able to index Special characters and search them fine.
But i have a situation where i need to index the special character Symbol and search it using its equivalent unicode values
Example:
I am indexing the below document
{
"id": 1,
"documentId": "334567"
"fieldValue": [
{
"fieldId": 175699,
"textValue": [{
"paragraph":"@doc"
},{
"paragraph":"γcomp"// this a lowercased gamma symbol
},
{
"paragraph":"@Keyboard"
}
],
"integerValue": "",
"numericValue": "",
"modifiedDate": "2010-01-01",
"modifiedUser": "Tr"
}
]
}
Now i want to search "γcomp" Using "γ" unicode value "γcomp" but it is not working
Can anybody please help with this?