Hi

i'd like to have a field in document to which i'm going to append strings and use span_near queries to search for a specific sequence of strings in it i wonder if that kind of usage makes sense, and if using array of strings instead of one long string would be better?

i.e.
which document is better for this kind of query

|
GET /my_index/_search
{
"query":{
"span_near":{
"clauses":[
{
"span_term":{
"seq":"lolrof"
}
}

,{
"span_multi":{
"match":{
"regexp":{"seq":"000200<0-20003>"}
}
}
}
],
"slop":100500,
"in_order":true
}
}
}

|

and this kind of update:

|
POST /my_index/4aeN2WBSS8WIpUpplUryPg/_update
{
"script":"ctx._source.seq += ['tag']"
}

|

documents:

|
POST /my_index
{
"seq":["lolrofl","000100010001","000200020002"]
}


|
POST /my_index
{
"seq":"lolrofl 000100010001 000200020002"
}

|
|

Thanks, Aleh

--
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/534E7D48.407%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to