@ConfigureCache("address-cache")
@Produces
public Configuration addressCache() {
return new ConfigurationBuilder()
.eviction().strategy(EvictionStrategy.LRU).maxEntries(4)
.loaders().shared(true).addStore().cacheStore(new RemoteEventCacheStore())
.build();
}