--
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-user...@googlegroups.com.
To post to this group, send email to ehcach...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/fc92e943-2579-4db5-a431-390b70c56f67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
What is your hibernate region factory? And is second level caching enabled?
Le jeu. 12 juil. 2018 6:46 AM, Pushkar Deole <pdeol...@gmail.com> a écrit :
Thanks.. Apart from the changes to hibernate entity object to mark the entity as Cacheable, are they any more code changes required to read the entity from cache or write to cache etc. Or Hibernate handles that internally?--
On Wednesday, July 11, 2018 at 6:11:31 PM UTC+5:30, Pushkar Deole wrote:Hi,I am new to EHCache and Hibernate. The application uses Hibernate 4.3.11 version. Since the application is heavily using database, I would like to use EHCache as Hibernate L2 cache. However, the application has several Java processes through which the database table is updated using Hibernate, so if one process updates the record, the cache should be synchronized to other java processes.Can someone help if clustered/distributed EHCache is supported with Hibernate? If yes then what is the procedure to configure it?
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-users+unsubscribe@googlegroups.com.
To post to this group, send email to ehcach...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/fc92e943-2579-4db5-a431-390b70c56f67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/CADZL2%3DtSraWJd4uM3Evqaku05oNCm_kfmsBxBQSaNgCbfQ6P_w%40mail.gmail.com.
The region factory that I would be using is org.hibernate.cache.ehcache.EhCacheRegionFactoryAs far as automatic peer discovery is concerned, are there any issues with UDP multicast such as ports need to be opened etc. ?
On Thu, Jul 12, 2018 at 5:26 PM, Henri Tremblay <henri.t...@gmail.com> wrote:
What is your hibernate region factory? And is second level caching enabled?
Le jeu. 12 juil. 2018 6:46 AM, Pushkar Deole <pdeol...@gmail.com> a écrit :
Thanks.. Apart from the changes to hibernate entity object to mark the entity as Cacheable, are they any more code changes required to read the entity from cache or write to cache etc. Or Hibernate handles that internally?--
On Wednesday, July 11, 2018 at 6:11:31 PM UTC+5:30, Pushkar Deole wrote:Hi,I am new to EHCache and Hibernate. The application uses Hibernate 4.3.11 version. Since the application is heavily using database, I would like to use EHCache as Hibernate L2 cache. However, the application has several Java processes through which the database table is updated using Hibernate, so if one process updates the record, the cache should be synchronized to other java processes.Can someone help if clustered/distributed EHCache is supported with Hibernate? If yes then what is the procedure to configure it?
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-user...@googlegroups.com.
To post to this group, send email to ehcach...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/fc92e943-2579-4db5-a431-390b70c56f67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/CADZL2%3DtSraWJd4uM3Evqaku05oNCm_kfmsBxBQSaNgCbfQ6P_w%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-user...@googlegroups.com.
To post to this group, send email to ehcach...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/CAGR6v8ED%2BxjOv2xbRHBmQ7-PDY5nCMaiwjGH7jOcf7kCn8FPoQ%40mail.gmail.com.
EhCacheRegionFactory is for Ehcache 2. Are you using Ehcache 2?Ehcache 2 can be clustered using a terracotta server or through direct replication. I don't know the details but be aware that it's not supported or active anymore.Ehcache 3 is clustered using a terracotta server. That is no multicast. And partial discovery. You need the TCP client port (9410 by default I think) to be open with the clients and the group port between terracotta servers (9430 by default I think).
On Fri, 13 Jul 2018 at 03:37, Pushkar Deole <pdeol...@gmail.com> wrote:
The region factory that I would be using is org.hibernate.cache.ehcache.EhCacheRegionFactoryAs far as automatic peer discovery is concerned, are there any issues with UDP multicast such as ports need to be opened etc. ?
On Thu, Jul 12, 2018 at 5:26 PM, Henri Tremblay <henri.t...@gmail.com> wrote:
What is your hibernate region factory? And is second level caching enabled?
Le jeu. 12 juil. 2018 6:46 AM, Pushkar Deole <pdeol...@gmail.com> a écrit :
Thanks.. Apart from the changes to hibernate entity object to mark the entity as Cacheable, are they any more code changes required to read the entity from cache or write to cache etc. Or Hibernate handles that internally?--
On Wednesday, July 11, 2018 at 6:11:31 PM UTC+5:30, Pushkar Deole wrote:Hi,I am new to EHCache and Hibernate. The application uses Hibernate 4.3.11 version. Since the application is heavily using database, I would like to use EHCache as Hibernate L2 cache. However, the application has several Java processes through which the database table is updated using Hibernate, so if one process updates the record, the cache should be synchronized to other java processes.Can someone help if clustered/distributed EHCache is supported with Hibernate? If yes then what is the procedure to configure it?
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-users+unsubscribe@googlegroups.com.
To post to this group, send email to ehcach...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/fc92e943-2579-4db5-a431-390b70c56f67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/CADZL2%3DtSraWJd4uM3Evqaku05oNCm_kfmsBxBQSaNgCbfQ6P_w%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/CAGR6v8ED%2BxjOv2xbRHBmQ7-PDY5nCMaiwjGH7jOcf7kCn8FPoQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ehcache-users+unsubscribe@googlegroups.com.
To post to this group, send email to ehcach...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/CADZL2%3DtdekCXW5UvNcts8odvg3JS-UXa2trJi9x-u6vDRn7_Sg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/35a8f452-1129-4a68-946f-1730e85ebeb7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/ehcache-users/35a8f452-1129-4a68-946f-1730e85ebeb7%40googlegroups.com.