Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3997352
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:23:28+00:00 2026-05-20T07:23:28+00:00

Hibernate 3.3 If I’ve got code that is dynamically creating hibernate hql queries like

  • 0

Hibernate 3.3

If I’ve got code that is dynamically creating hibernate hql queries like

String query = "from Foo where ";
if( beforeDate != null ) then query+=" createdBefore < :before";
session.createQuery(query);

Does the resulting sql that will get executed on the db get cached by the SessionManager so that if the same query keeps getting executed it won’t have to get recompiled everytime or will it get re-parsed and rebuilt by hibernate every time?

I’m thinking that to increase performance of my db code I’ll have to write some static named queries in hibernate to reduce the parsing overhead if there is some.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T07:23:29+00:00Added an answer on May 20, 2026 at 7:23 am

    The SQL won’t be cached, because you are creating a new Query each time. You could cache the Query, but I doubt that the parsing overhead is significant.

    Some things to check for performance of that query:

    • Do you have a suitable index on createdBefore?
    • Are the relationships which Foo has with other objects ‘appropriate’ — that is are they lazy if possible and strict if necessary. Say Foo has a member which is loaded from the Bar table. If you make the relationship lazy, you avoid a join, but if you then access the Bar belonging to each Foo you’ve done n more queries, and would have been better off setting lazy="false".
    • If you make the query many times with the same value for before, and the Foo table is only updated via Hibernate, and it is not updated more often than it is queried, and the size of the result sets is not too large, you could use the query cache

    As always with any performance issue, make sure you have repeatable before and after measurements.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does hibernate HQL queries support using select min, max, count and other sql functions?
My understanding of Hibernate is that as objects are loaded from the DB they
In hibernate I want to run this JPQL / HQL query: select new org.test.userDTO(
In Hibernate HQL, how would you query through a many-to-many association. If I have
Hibernate can auto-generate schemas from properly annotated POJO classes. And I also know that
The hibernate named query returns a BigDecimal for a column that has datatype NUMBER.
Problem: Hibernate is not executing queries correctly. It errors with a problem that appears
Hibernate is generating the SQL for the following query : select pcp.id from PersistentContentProfile
Hibernate has a handful of methods that, one way or another, takes your object
Does hibernate provide a method that returns an object's state (transient, persistent, detached)?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.