我目前正在使用hazelcast版本的3.9
我尝试过几种实现近缓存的方法,但似乎找不到正确的方法。下面我已经分享了我的代码,并让我确切地知道我的错误所在。
public class NearCacheExample {
public static void main(String[] args) throws IOException
{
HazelcastConfig hzConfig = new HazelcastConfig();
HazelcastInstance hzInstance = hzConfig.getHZInstance();
IMap<Double, String> nearCacheMap = hzInstance.getMap("cacheExample");
for (int i = 0; i < 100000; i++) {
nearCacheMap.set(Math.random(), i + "");
}
long startTime = System.currentTimeMillis();
System.out.println("---------------------------Before Sort----------------------------------");
for (Entry<Double, String> entrySet : nearCacheMap.entrySet()) {
Double key = entrySet.getKey();
String value = entrySet.getValue();
}
long endTime = System.currentTimeMillis();
System.out.println("------------------------------------------------Read Both---------------------------------------------------");
NearCacheStats nearCacheStatistics = nearCacheMap.getLocalMapStats().getNearCacheStats();
System.out.println( "Near Cache hit/miss ratio 3= "
+ nearCacheStatistics.getHits());
System.out.println("Near cache implemented or not " + nearCacheMap.getLocalMapStats().getNearCacheStats().getOwnedEntryCount());
System.out.println(" EndTime timeDifference : " + startTime + " " + endTime + " " +(endTime-startTime));
}
}我在检查NearCache统计数据时得到的输出是完全0。
HazelcastConfig.java文件
public class HazelcastConfig
{
public HazelcastInstance getHZInstance() throws IOException
{
ClientConfig cfg = new XmlClientConfigBuilder("src/main/resources/hazelcast-client.xml").build();
return HazelcastClient.newHazelcastClient(cfg);
}
}Hazelcast客户端的配置
<near-cache name="default">
<in-memory-format>BINARY</in-memory-format>
<invalidate-on-change>true</invalidate-on-change>
<eviction eviction-policy="NONE" max-size-policy="ENTRY_COUNT" size="10"/>
我还尝试在hazelcast-client.xml文件中更改缓存名。似乎什么都起不到作用。
在hazelcast服务器端,没有任何更改。
发布于 2019-01-24 07:06:37
@Tatkal
map.set使近缓存无效-- put --不要将新值放在那里String value = nearCacheMap.get(entrySet.getKey());或将循环更改为keySet for (Double key : nearCacheMap.keySet()) {
String value = entrySet.getValue(key);
}---------------------------Before Sort----------------------------------
------------------------------------------------Read Both---------------------------------------------------
Near Cache hit/miss ratio = 0 / 100000
Near cache implemented or not 10
EndTime timeDifference : 1548313357643 1548313362527 4884
------------------------------------------------Read Both---------------------------------------------------
Near Cache hit/miss ratio = 10 / 199990
Near cache implemented or not 10
EndTime timeDifference : 1548313357643 1548313367155 9512
------------------------------------------------Read Both---------------------------------------------------
Near Cache hit/miss ratio = 20 / 299980
Near cache implemented or not 10
EndTime timeDifference : 1548313357643 1548313371688 14045https://stackoverflow.com/questions/54340342
复制相似问题