Florian Bernd
Florian Bernd
@jonyadamit I agree, that the current behavior might not be optimal and, like stated above, I'm open to improve the default 🙂 I just have not decided how exactly the...
@jonyadamit > So I guess the current default behavior doesn't return all LogEntry items in all indices, but rather all items everywhere. That's correct. By default, Elasticsearch will return all...
Hi @niemyjski, this is actually a bug in the code generator. `FieldDateMath` is defined as: ```ts export type FieldDateMath = DateMath | double ``` The correct output declaration should be:...
Hi @DR9885, most of the times you want enums to be stored as `string`, because otherwise reordering them or adding new members inbetween will mess up the complete mapping. As...
The new default behavior was decided before I joined the team and there probably are as well good arguments in favor of this change. Maybe @Mpdreamz @stevejgordon can remember these?...
@mappzor and me worked on the APX branch a while ago and our work is mostly finished by now. We have to polish some of the APIs before we can...
Thank you! I'll then make sure to create a v4 maintenance branch first, in which we should merge your PR and backport any other non breaking fix from master until...
Hi @laie, You are right that we could remove all meta-data from the `ZydisDecodedInstruction/Operand` structs and provide separate APIs to retrieve these, but reducing the struct sizes _while still keeping...
Yes, there is definitely some room for improvement. The discussion about packed structs, bitfields etc. as well came up a few time already over the past years. We haven't yet...
Hi @gpetrou, the `RawJsonQuery` is a bit of a hack. The most easiest fix for me would be to separate the variant-name (e.g. "term") from the rest of the query...