Neil Crawford
Neil Crawford
@jeffbski that's good to know, I get 1 engineering day a week so I'll probably give it a go within the next week or two. I've done some stress testing...
@dchester I'm interested in this kind of thing too. Is there a way to get a query to return authors and titles as pairs? ``` $..book[?(@.category=="fiction")].[author&title] ``` I don't think...
Scratch that, read the tests again ``` "$..book[?(@.category=="fiction")]['author','title']" ```
This is how I'm testing at the moment but it would be nice for the framework to have some features to allow for this. ``` [Route("profile/{memberId:int:min(1)}")] public ActionResult Index(int memberId)...
@Thibaut this sounds like a great feature. We've been playing around with devdocs at my workplace as a way of aggregating all of our documentation across all our different git...
I tried this but it didn't override the request options set in the `config.exs` file. Using `{:crawly, "~> 0.13.0"}` ``` Crawly.Request.new( url, [], proxy: {"http://myproxy:@proxy.crawlera.com", 8011}, hackney: [:insecure] ) ```...