Ben Ashford
Ben Ashford
Thanks for raising this. Given that the baseline of the library is still targeted against ElasticSearch 2.0, I'm wary of it becoming potentially confusing by half-supporting higher versions (e.g. not...
This is indeed an interesting problem, and creates a bit of a dilemma when trying to write code that's idiomatic to both Rust and ElasticSearch as this kind of context...
It may well be that such indirection and application specific logic is the best way, especially as ElasticSearch doesn't guarantee the structure of source documents. This leaves it up to...
Script based sorting: https://www.elastic.co/guide/en/elasticsearch/reference/2.0/search-request-sort.html#_script_based_sorting Script query: https://www.elastic.co/guide/en/elasticsearch/reference/2.0/query-dsl-script-query.html (and script scoring: https://www.elastic.co/guide/en/elasticsearch/guide/current/script-score.html) Scripted Metric Aggregation, quite a bit different from the others: https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-metrics-scripted-metric-aggregation.html Bucket Script Aggregation: https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-pipeline-bucket-script-aggregation.html See also: https://www.elastic.co/guide/en/elasticsearch/reference/2.0/modules-scripting.html
Thanks for the notification. Do you have a larger example that demonstrates the problem? Perhaps something I can encapsulate in a test case? In a simple case, using something like:...
At the moment the implementation of the Put Mapping API is a placeholder. I would like it to behave more like the rest of the library, e.g. static types using...
Thanks for this. I'm running out of time to review this today, but I'll come back to it shortly :+1:
Regarding backwards compatibility. I think we should make a clean break at some point and declare that version `x` of `rs-es` moves the minimum ES version up. As to when...
Regarding `redis-async-rs`, it's still currently active, there's a feature branch where most of the recent commits have been going, but due to other time pressures it's going to be a...
Updated to include some minor improvements. Running the test 25 times I get: ``` Result: 499999500000 Took: 175.90ms Result: 499999500000 Took: 118.05ms Result: 499999500000 Took: 137.63ms Result: 499999500000 Took: 139.81ms...