~/Downloads/hazelcast-3.2.2/bin$ diff hazelcast.xml hazelcast.xml.bak 25c25---> <management-center enabled="false">http://localhost:8080/mancenter</management-center><property name="hibernate.cache.use_query_cache">true</property><property name="hibernate.cache.region.factory_class">com.hazelcast.hibernate.HazelcastCacheRegionFactory</property><property name="hibernate.cache.hazelcast.use_native_client">true</property><property name="hibernate.cache.hazelcast.native_client_address">127.0.0.1</property><property name="hibernate.cache.hazelcast.configuration_file_path">hazelcast-client-me.xml</property><property name="hibernate.cache.hazelcast.native_client_group">dev</property><property name="hibernate.cache.hazelcast.native_client_password">dev-pass</property> <hazelcast-client xsi:schemaLocation="http://www.hazelcast.com/schema/client-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <group> <name>dev</name> <password>dev-pass</password> </group> <network> <cluster-members> <address>192.168.71.128:5701</address> <address>192.168.71.128:5702</address> </cluster-members> <smart-routing>true</smart-routing> <redo-operation>true</redo-operation> </network> <near-cache name="com.helloworld.entities.HelloWorld"> <max-size>2000</max-size> <time-to-live-seconds>100</time-to-live-seconds> <max-idle-seconds>100</max-idle-seconds> <eviction-policy>LFU</eviction-policy> <invalidate-on-change>true</invalidate-on-change> <in-memory-format>OBJECT</in-memory-format> </near-cache>
<executor-pool-size>40</executor-pool-size></hazelcast-client>--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hazelcast+...@googlegroups.com.
To post to this group, send email to haze...@googlegroups.com.
Visit this group at http://groups.google.com/group/hazelcast.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/6eff662d-3dad-46dc-875e-c62031ded850%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

<near-cache name="com.helloworld.entities.User">...</near-cache>
<near-cache name="com.helloworld.entities.Email">...</near-cache>
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/5bc2af45-2e06-4ce2-be2e-6cc91d89d59f%40googlegroups.com.
I have a question about the Hazelcast near cache statistics. If the near cache is configured on the Hazelcast client, will those statistics be reflect/computed/aggregated in any way in the Hazelcast management center?
The reason I am asking this is all of our near cache statistics are zero – entries, entry memory, hits, misses. The ratio is NAN. And the documentation is not very clear with respect to this so I am not sure if I misconfigured something or if this behavior is expected.
Your post on 6/10/2014 leads me to believe that this capability is not functioning yet - https://groups.google.com/forum/#!msg/hazelcast/tG89BAU56pA/BGfPg2FSzE8J
The near cache stats you see in management center are the near cache configured in server side.
Stats for client-side near caches are planned feature for management center but not yet implemented
Thanks in advance for your help.