Dot not used as delimiter

You're probably using Standard analyzer which recognises hostnames.

$ curl -X GET "http://localhost:9200/_analyze?analyzer=standard&pretty=true"
-d
"computer.rails"

{
"tokens" : [ {
"token" : "computer.rails",
"start_offset" : 0,
"end_offset" : 14,
"type" : "",
"position" : 1
} ]
}

The giving of space works because,

$ curl -X GET "http://localhost:9200/_analyze?analyzer=standard&pretty=true"
-d "computer. rails"
{
"tokens" : [ {
"token" : "computer",
"start_offset" : 0,
"end_offset" : 8,
"type" : "",
"position" : 1
}, {
"token" : "rails",
"start_offset" : 10,
"end_offset" : 15,
"type" : "",
"position" : 2
} ]
}

Depending on your needs, you might want to use a different analyzer like
simple

On Wed, Jun 19, 2013 at 1:02 AM, oto iashvili
optimum.dulopin@laposte.netwrote:

Hi,

I just find out that if texte is something like 'computer.rails' , search
on "computer" will not find this text. If I change to 'computer.
rails' (with space after dot), then it is working
I saw her some info, but couldnt understand :

Elasticsearch Platform — Find real-time answers at scale | Elastic

can anyone help me ?

thanks

--
You received this message because you are subscribed to the Google Groups
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

--
Regards,
Abhijeet Rastogi (shadyabhi)
http://blog.abhijeetr.com

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.