• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

EHCache not working

 
Ranch Hand
Posts: 114
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Friends,

I am unable to implement EHCache in my application. To do this I followed the following procedure:-

1. Added the following details in hibernate.cfg.xml:-

<property name="hibernate.cache.provider_class">net.sf.ehcache.hibernate.SingletonEhCacheProvider</property>
<property name="hibernate.cache.use_second_level_cache">true</property>
<property name="hibernate.cache.provider_configuration_file_resource_path">/ehcache.xml</property>

2. created ehcache.xml with default properties and few class properties.

3. Added <cache usage="read-only"/> in hibernate properties file and the sets.

When I run my application I see that EHCache is assigned properly, however I cannot see the affects, the speed of the execution of application is same and when i check the cacheHitCount it is 0.

It seems like I am missing something. Can anybody guide me the right procedure? Is there any example showing the correct implementation or are there any junit test cases to test the working functionaltiy.

Please suggest.

Thanks
 
Ranch Hand
Posts: 662
Eclipse IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can you post your ehcache.xml and tell us which app server you are using?
 
Ranch Hand
Posts: 33
Google Web Toolkit Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you load a data in Object form or using HQL query.?

please check that hibernate fire the query for your data?


 
reply
    Bookmark Topic Watch Topic
  • New Topic