It is easy to query ElasticSearch but exchanging with others is not as easy as I would like to have it.
I would like to have the possibillity to save queries to ElasticSearch in a way similar to the percolator API:
url -XPUT localhost:9200/_query/myqueryname -d '{
"query" : {
"term" : {
"field1" : "value1"
}
}
}'
Later I would like to execute the query via
curl -X GET localhost:9200/_query/myqueryname
I think such a functionality is not available in ElasticSearch at the moment. Or?