Storage
EmbeddedStorageManager storageManager = EmbeddedStorage.start();
CachingProvider provider = Caching.getCachingProvider();
CacheManager cacheManager = provider.getCacheManager();
CacheConfiguration<Integer, String> configuration = CacheConfiguration
.Builder(Integer.class, String.class, "my-cache", storageManager)
.build();
Cache<Integer, String> cache = cacheManager.createCache("jCache", configuration);keyType = java.lang.Integer
valueType = java.lang.String
readThrough = true
writeThrough = true
storageConfigurationResourceName = microstream-storage.propertiesbaseDirectory = ~/cache-data
channelCount = 4Last updated