Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

Hibernate query cache - for objects not in the 2nd level cache - risky? usefull? bad practice?

Related to this question Premise: These are my assumptions, based on my reading, experience and understanding, they may be wrong, if they are, please comment and I'll edit the question. Query ...
2
votes
3answers
437 views

How do you enable hibernate query cache on a session level only?

Good day, What if I have a query that gets called multiple times in a single thread, and I just want to cache that query (and its result) for that thread (or for that session since I'm using one ...
1
vote
1answer
56 views

ASP.NET Does the Application/Session cache force application restarts?

I want this to be more of a discussion than anything. So I have a website at www.utopiapimp.com. Right now it gets over 1 mil page views a day. There is a ton of dynamic data on this site that is ...
1
vote
3answers
394 views

NHibernate Caching Objects Based on Parent Class's ID

I have the following definitions for the Animal and Dog types. Note that the ID for the object is the AnimalID: <class name="Animal" table="Animals"> <id name="Id" type="System.Int32" ...
0
votes
3answers
471 views

How to update a collection-type relation with mappedBy in Hibernate?

I have two related entities, say @Entity public class Book { @ManyToOne Shelf shelf; } @Entity public class Shelf { @OneToMany(mappedBy="shelf") Set<Book> books; } If I fetch ...