Matthew Mayer
Matthew Mayer
Thanks for making this crate, we've got a lot of miles out of it in Rusoto. 👍 Any thoughts on how best to contribute to improving performance of `xml-rs`?
That'd be awesome! 👍
Correct: we'll want it across all services. Seeing an example of it working can help us figure out a solution. 😄
@andrewbanchich I'm booked up the next few weeks, but we could work something out. If possible, a code snippet of how you're using the iterators would be 💯 and an...
We may have support for this already! The request type is available in the [S3 client](https://rusoto.github.io/rusoto/rusoto_s3/struct.SelectObjectContentRequest.html). I've not used it, but it could work with the latest release of Rusoto....
Please re-open if this doesn't work for you. 😄
Reopening as I've found issues while making an example of S3-Select! I'll post a link to a reproduction, but for now here's what I've found: * `SelectObjectContentOutput` is *really* gnarly...
Reproduction here: https://github.com/matthewkmayer/matthewkmayer.github.io/tree/s3-select-sample/samples/rusoto-s3-select .
Testing with `master` I get something closer to working: the request goes to `/OBJECT?select%26select-type=2` now. A double encoding of the question mark?
With some manual changes to the S3 code, this works and signs correctly in `select_object_content`: ```rust let mut params = Params::new(); params.put("select-type", "2"); params.put("select", ""); request.set_params(params); ``` Now I can...