How to cache rarely changed many-to-one entity in CF ORM, such as, userType where there are only < 10 types? I don't want the extra select to get the type name.

EhCache? Any XML needed to be config first? Any thing I need to add in the many-to-one cfproperty?

Thank you.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

If UserType is a component, you specify cacheuse="read-only" cachename="UserType" in the component definition. read-only is the fastest and is good for cases such as the one you describe.

In my experience, simply specifying the cache value on the property in the owning component did not cause the caching that you'd expect... I needed to specify it directly on the component-being-cached

Because you're using read-only for speed, you'll need something somewhere to let you evict that cache when data are updated:

ormEvictEntity("UserType");

link|improve this answer
Oh, Henry, no need to configure any XML. It "Just works" when you add those component attributes – marc esher Aug 3 '10 at 17:12
really? I thought there's some XML for enabling level 2 cache for Hibernate or something? – Henry Aug 3 '10 at 18:00
Well, there is XML behind it, but you don't need to do anything to turn it on. Whatever the "cachename" ends up being -- whether you specify it in the component attribute or it derives it from the entity name -- CF will create a new cache region in that XML file for you. – marc esher Aug 3 '10 at 18:17
feedback

Add this to your many-to-many to force it to load the children when populating the entity.

   lazy="false"
link|improve this answer
thx, but that's not what i'm looking for, I DO need the type name, just that I don't want the select to be fired. – Henry Aug 3 '10 at 17:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.