Jens Schauder
Jens Schauder

Reputation: 81882

How to configure NearCache with Hazelcast 3.5 without an explicit Client

Based on this question, I'm trying to switch to the version 3.5-EA of Hibernate.

Up to now I had a configuration like this:

CacheConfiguration<K, V> configuration =  new CacheConfig<K, V>()
    .setNearCacheConfig(new NearCacheConfig().setInMemoryFormat(InMemoryFormat.OBJECT))
    .setExpiryPolicyFactory(createExpiryPolicyFactory(expiryDuration));
cache = cacheManager.createCache(cacheName, configuration);

But now the setNearCacheConfig method is gone. There only exists a addNearCacheConfig on the ClientCacheConfig. But I don't have a ClientCacheConfig.

I basically don't know where to put the NearCacheConfig.

Upvotes: 0

Views: 311

Answers (3)

Brijendra Agarwal
Brijendra Agarwal

Reputation: 11

As per my opinion, NearCache feature is useful when you are using Client-Server hazelcast api and when youa re trying to access cache externally, but if you are gonna make call within hazelcast cluster internally and do not want to use Hazelcast client api than there no need to use NearCache feature. Since there will not be any benefit out of it.

Upvotes: 0

wantstoknow
wantstoknow

Reputation: 86

If you do not want to use xml for configuration (http://docs.hazelcast.org/docs/latest/manual/html-single/hazelcast-documentation.html#near-cache) - you could probably do something like this -

    Config cfg = new Config();
    MapConfig mc = new MapConfig();
    mc.setNearCacheConfig(new NearCacheConfig());
    cfg.addMapConfig(mc);
    HazelcastInstance hi = Hazelcast.newHazelcastInstance(cfg);

Upvotes: 0

Henning
Henning

Reputation: 1

the configuration of the nearcache can be done on the client side. http://docs.hazelcast.org/docs/3.5/manual/html-single/hazelcast-documentation.html#hazelcast-java-client

Upvotes: 0

Related Questions