Give me simple example of hibernate caching and explain the
details of caching????? thanks in adv.
Answer Posted / imambasha
caching concept in hibernate is performed internally in
stages...
1)firstlevel(Session) caching
2)Secondlevel(SessionFactory) caching
1)firstlevel(Session) caching:
First-level cache always Associates with the Session
object. Hibernate uses this cache by default. Here, it
processes one transaction after another one, means wont
process one transaction many times. Mainly it reduces the
number of SQL queries it needs to generate within a given
transaction. That is instead of updating after every
modification done in the transaction, it updates the
transaction only at the end of the transaction.
2)Secondlevel(SessionFactory) caching
Second-level cache always associates with the Session
Factory object. While running the transactions, in between
it loads the objects at the Session Factory level, so that
those objects will available to the entire application,
don’t bounds to single user. Since the objects are already
loaded in the cache, whenever an object is returned by the
query, at that time no need to go for a database
transaction. In this way the second level cache works.
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What is message driven beam?
What do you mean by Socket Programming?
How would you detect a keypress in a jcombobox?
What is the difference between session and entity beans?
Do I have to use jsps with my application?
Are we allowed to change the transaction isolation property in middle of a transaction?
What method is invoked to cause an object to begin executing as a separate thread?
the same information whether it will connect to the database or it will be used previous information?
If I wanted to use a solarisui for just a jtabbedpane, and the metal ui for everything else, how would I do that?
What is the map interface?
Where can I find seam examples and documentation?
Write a singleton program?
What are the difference between RMI and CORBA?
what is handle?
What is the difference between a menuitem and a checkboxmenuitem?