Zdenek Jonas
Zdenek Jonas
Currently, the configuration using the default configuration files is created for storage. So we now have keys of type: ``` storage-directory lock-file-name ``` which all relate to but storage. But...
Add feature, to rewrite all objects already saved in DB to actual state by legacy type mapping. In DB world is something like "Vertical Partitioning". One example. I have an...
Adding new Type Handler raised ` java.lang.UnsupportedOperationException` on existing storage, when the current Type is already saved with generic type handler. Just now for: `java.util.concurrent.CopyOnWriteArraySet` Exception: ``` 15:20:53 java.lang.UnsupportedOperationException: Types...
Method Unsafe.enuseClassInitialized is deprecated and also mark for removal... ```java /** * Ensures the given class has been initialized. This is often * needed in conjunction with obtaining the static...
Add Docu for Android, how to add persistence module for android to project: https://mvnrepository.com/artifact/one.microstream/microstream-persistence-binary-android Gradle: ``` dependencies { ... implementation 'one.microstream:microstream-storage-embedded:08.00.00-MS-GA' implementation 'one.microstream:microstream-storage-embedded-configuration:08.00.00-MS-GA' implementation 'one.microstream:microstream-persistence-binary-android:08.00.00-MS-GA' ... ```
GraalVM native-image works only in fallback mode - without: Could not obtain access to "theUnsafe"
GraalVM native-image works only in fallback mode - without: Could not obtain access to "theUnsafe" tested on: GraalVM 20.1.0 GraalVM native-image works only in fallback mode. When I compile the...
There are two types of collections in Kotlin, mutable and immutable. The mutable can be handle by out existing Binary Handlers, but we need to support for immutable. Docs for...
Currently, problems can occur if the object graph is modified by another thread at the time it is saved. This can occur when using e.g. MVC frameworks, when several parallel...
Create different configuration profiles for different use cases. Each profile should have its own settings for the following parameters: - HouseKeeping, standard or addaptive - Values - Other? MicroStream technology...
It is probably a typo in the configuration. File: `UpdateProjectLicenseMojo` Instead of: ` @Parameter( property = "license.licenceFile", defaultValue = "${basedir}/LICENSE.txt" )` should be ` @Parameter( property = "license.licenseFile", defaultValue =...