William Myers

Results 73 comments of William Myers

@KodrAus, I spent some time poking around trying to implement this but got a little lost. It seems like [this](https://github.com/elastic-rs/elastic/blob/1b445349e6fc8e3caf3c8fff7a5728f065440991/src/types_derive_internals/src/elastic_type/mod.rs#L334) function handles it, but I couldn't really see how to...

I have wanted that too. That being said, Elasticsearch [doesn't support](https://www.elastic.co/guide/en/elasticsearch/reference/current/number.html) unsigned integers. @KodrAus, I suppose that is why they haven't been mapped? Maybe we could do some trickery to...

You can also do it though Elasticsearch [directly](https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html), I use [dynamic mappings](https://www.elastic.co/guide/en/elasticsearch/reference/current/dynamic-mapping.html) personally...

So what about [7.0](https://www.elastic.co/guide/en/elasticsearch/reference/current/release-notes-7.0.0.html)? haha... There doesn't seem to be that many [breaking changes](https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking-changes-7.0.html#breaking_70_mappings_changes) that we would have to worry about...

@Bealiah-dev those were added in 08ed5ce8a9881bc4dfe546055c4f020f33ed01d7. Both the latest pre-release version (`0.21.0-pre.5`) and the latest stable release (`0.20.10`) do *not* have that commit though. It will be in the next...

Looks like sgarciac/bombadil@869b9a0 added support for dotted keys? Maybe it's just a simple version bump of the dependency to `>=2.0.1`? As a workaround quoted dotted keys work, although its [best...

We use it in production at [Voxjar](https://voxjar.com/) for our entire [API](https://api.voxjar.com/).

> Problem - it doesn't look like we can use macros in trait bounds position yet... `proc-macros` might be a good fit? I am thinking something along the lines of:...

I agree, handling both alphabets seamlessly seems tricky and not the correct way. I see the value in doing it both of the ways you suggested—configure or even hard-code per...

Hello! Sorry you had such a hard time getting started! I have been wanting to make it easier to get a development environment and running for some time now. Although,...