speed « Performance « JPA Q&A





1. No improvement in speed when using Ehcache with Hibernate    stackoverflow.com

I'm getting no improvement in speed when using Ehcache with Hibernate Here are the results I get when i run the test below. The test is reading 80 Stop objects and then ...

2. How to improve my software project's speed?    stackoverflow.com

I'm doing a school software project with my class mates in Java. We store the info on a remote db. When we start the application we pull all the information from the ...

3. how to speed up hibernate criteria 'ilike queries' with oracle database    stackoverflow.com

We are using hibernate with oracle (11) and have severe performance problems due to the usage of 'ilike', the case insensitive 'like'. The java / hibernate code looks like:

 c1.add( Restrictions.ilike("address", address) ...