Per-Ake Minborg

Results 108 comments of Per-Ake Minborg

Here is a general article about running the Chronicle libraries under Java 17. Perhaps there are some findings there you can apply? https://chronicle.software/chronicle-support-java-17/

> @minborg, has this actually be fixed (because I don't see any related changes on `develop` or `ea`)? Using `--add-opens` is merely a workaround and cannot be applied easily in...

Generally speaking, an obvious way to reduce problems like this is to remove the use of reflection (on objects that are not exported by the module system). Support for the...

Here is a template: https://github.com/OpenHFT/Chronicle-Queue/blob/ea/src/main/java/net/openhft/chronicle/queue/QueueSystemProperties.java

We should also allocate and manage the actual namespace globally, for example in an .adoc in this very repository.

> Question: > > 1. Will we ever try to expose the stable benign race model to users? > 2. Will we ever try to inline the stable values in...

> @minborg Just curious, why are you adding holder-in-holder benchmark cases? I'd like to test the transitive constant folding capabilities.

I've run some benchmarks on various platforms for static fields (higher is better):

> Just curious, can you test other samples, like `StableValue` where the contained `List` is an immutable list from `List.of` factories? I think that would be a meaningful case too....

> Also on a side note, I just realized there's no equivalent of `@Stable int[]` etc. stable primitive arrays exposed, yet immutable arrays will be useful. Is the Frozen Arrays...