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?

Oliver

--
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/52D69E9E.2010706%40swe-blog.net.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to