Results 47 issues of Andrej Fink

Please display shortcuts in tooltips and menus! I.e. If one puts mouse over "Find Next" (>), he will see "Find Next (F3)" The menu item "Go to | Page..." will...

As you know, in active/standby configuration, there is one active server and one or more standby servers. The active server works hard and its "binary log" aka "changes" are replicated...

Your project is miles ahead of everyone else. I see every feature on your start page and I really want it. *** _my subjective wrong opinion, please ignore_ _Pure Java...

question

Micro-step approach to https://github.com/eclipse-vertx/vert.x/pull/5001 I have split a big PR into smaller ones: 1) use JDK Map.entry(key,value) instead of self-made Entry class in JsonObject 2) better .stream() with flags and...

1) remove two wrapper methods fromJson and fromBuffer 2) use JDK Map.entry(key,value) instead of self-made Entry class 3) better initialCapacity 4) better .stream() with flags and less lambdas Replacement for...

There is a memory optimization that can be used in Vert.x in several places. For example, here: `io.vertx.core.impl.VertxImpl.InternalTimerHandler` `private final AtomicBoolean disposed = new AtomicBoolean();` `AtomicBoolean` is quite a heavy...

bug

I have made quick benchmark using JMH. https://github.com/magicprinc/benchmarks4vertx It definitely requires more expert tuning, but at first glance, the results are interesting. In some cases, Jackson is 36% faster than...

enhancement

1) remove two wrapper methods fromJson and fromBuffer 2) better .stream() with flags and less lambdas 3) plus 2 ctors: JsonArray(Collection collection) and (initialCapacity) 4) micro optimization with len (it...

What I miss in Vert.x is URL parsing and manipulation class similar to OkHttp's HttpUrl https://medium.com/square-corner-blog/okhttps-new-url-class-515460eea661 https://square.github.io/okhttp/5.x/okhttp/okhttp3/-http-url/index.html It is far ahead of the competition. This is the way you should...

enhancement

I like VT, their support in Vert.x v4.5 and your efforts very much! We have mixed environment (JDK17, 21) and Java doesn't have macros (as in C; unless you use...

bug