You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using cache-to-use “ hazelcast-spring”, HazelcastSpringBucket4jCacheConfiguration should be updated to support SyncCacheResolver and should not be AsyncCacheResolver which will not work @Bean @ConditionalOnMissingBean(SyncCacheResolver.class) public SyncCacheResolver hazelcastCacheResolver() { #just for example as below return new HazelcastSyncCacheResolver(hazelcastInstance, false); }
Make changes for Bucket4jCacheConfiguration to include IgniteBucket4jCacheConfiguration for support ignite async and change IgniteCacheResolver#isAsync() return true
Making Changes of the annotation @ConditionalOnCache("jcache-ignite") to @ConditionalOnCache("jcache-infinispan") for InfinispanJCacheBucket4jConfiguration is more clear
The text was updated successfully, but these errors were encountered:
I have some problems as below
When using cache-to-use “ hazelcast-spring”, HazelcastSpringBucket4jCacheConfiguration should be updated to support SyncCacheResolver and should not be AsyncCacheResolver which will not work
@Bean @ConditionalOnMissingBean(SyncCacheResolver.class) public SyncCacheResolver hazelcastCacheResolver() { #just for example as below return new HazelcastSyncCacheResolver(hazelcastInstance, false); }
Make changes for Bucket4jCacheConfiguration to include IgniteBucket4jCacheConfiguration for support ignite async and change IgniteCacheResolver#isAsync() return true
Making Changes of the annotation @ConditionalOnCache("jcache-ignite") to @ConditionalOnCache("jcache-infinispan") for InfinispanJCacheBucket4jConfiguration is more clear
The text was updated successfully, but these errors were encountered: