M.Thimm

Results 6 comments of M.Thimm

Not sure if this is a different issue, but using the system property `-Dorg.xerial.snappy.use.systemlib=true` and running the binary in a docker image based on alpine that has `RUN apt update...

Unfortunately, you cannot. When setting `org.xerial.snappy.use.systemlib=true`, `SnappyLoader.findNativeLibrary()` will return null, and its caller `SnappyLoader.loadNativeLibrary()` will perform a plain `System.loadLibrary("snappyjava");` - no variables, no means to override behavior. `org.xerial.snappy.lib.name` will only...

Would it be possible to check whether an index exists and compare the properties to the annotated index options? - if an index with same parameters exists, do nothing (adds...

Is there any support for Spring Boot native images planned? I assume it should be possible to use Gizmo to build the bytecode ahead of time there as well. I'm...

A possible workaround is using a custom SolutionCloner. The easiest way is probably to use a Kotlin data classes as PlanningSolution and PlanningEntities: ``` @PlanningSolution(solutionCloner = MySolutionCloner::class) data class MySolution(...

Just adding some more use cases to the discussion and how I categorized them in our implementation: - limited overtime (e.g. VRP: an employee may work limited overtime which gets...