--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To post to this group, send email to haze...@googlegroups.com.
To unsubscribe from this group, send email to hazelcast+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/hazelcast?hl=en.
To unsubscribe from this group, send email to hazelcast+...@googlegroups.com.
@fuadm
I guess it is because your 10000 records data has been distributed into 2 nodes. And when you get all (select *) nearly half of data will be serialized through other node.
You can configure near cache that will have some help to decrease performance penalty.
@mm
> ...
>
> read more »
> ...
>
> read more »
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To post to this group, send email to haze...@googlegroups.com.
To unsubscribe from this group, send email to hazelcast+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/hazelcast?hl=en.
> ...
>
> read more »
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To post to this group, send email to haze...@googlegroups.com.
To unsubscribe from this group, send email to hazelcast+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/hazelcast?hl=en.
On this JVM, you are running a normal Hazelcast member. On this JVM do
you also have HazelcastClient or Monitoring Tool running? Can you
also tell us the hazelcast build-date? I am also assuming that all
your JVMs are using the 1.9.2-RC jars for sure..
-talip
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To post to this group, send email to haze...@googlegroups.com.
To unsubscribe from this group, send email to hazelcast+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/hazelcast?hl=en.
...
Hi,In simplest form first set some hibernate properties (either in hibernate.cfg.xml or hibernate.properties or spring config xml etc..);
- set hibernate.cache.use_second_level_cache => true
- if you want query cache set hibernate.cache.use_query_cache => true
- if your hibernate version is prior to 3.3.x then set hibernate.cache.provider_class => com.hazelcast.hibernate.provider.HazelcastCacheProvider else set hibernate.cache.region.factory_class => com.hazelcast.hibernate.HazelcastCacheRegionFactory
Assuming you already know hibernate L2 cache configurations.Then put hazelcast-hibernate-x.y.z.jar and hazelcast.xml into your classpath.Every hazelcast entity is cached in a hazelcast map. So you can configure backup, eviction, TTL and near cache for those maps in hazelcast.xml. If you do not specify any configuration for a map then default config will be used. (Map name in configuration is name of your hibernate entity.)
ps: This page is more readable to me: http://code.google.com/docreader/#p=hazelcast&s=hazelcast&t=HibernateSecondLevelCache
@mm
On Fri, Jan 14, 2011 at 15:42, santhosh TR <santhos...@gmail.com> wrote:
Hi All,
Here we were looking for some efficient alter native for terracotta/
coherence. HC seems to be a very good option for us and we are in the
process of evaluating HC for our products. We are mainly looking into
two main features,
1. Distributed Data Structures and
2. L2 Cache for Hibernate.
But from the documentation (http://hazelcast.com/
documentation.jsp#HibernateSecondLevelCache) it is not clear the steps
required to configure HazelCast as l2 cache. Can any one here please
guide me how to configure the same? I'm really looking forward for
some expert advice :).
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To post to this group, send email to haze...@googlegroups.com.
To unsubscribe from this group, send email to hazelcast+...@googlegroups.com.
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/04476690-713d-4931-9a5b-6a0edeae0663%40googlegroups.com.
...