Say, I have domain object
class Parent {
static hasMany = [children:Child]
static mapping = {
cache true
children cache: true // !!!
}
}
I have admin page that shows Parent with list of children. Also there is an ability to add new child. What happens to me is when I add new child with line (!!!) enabled - child not appears on Parent page. Though it's added to DB, because server restart makes it show. Without line (!!!) it works as expected.
Is this how it should work by design? Should I manually invalidate the association cache? Also something similar is described in this question cache setting in grails
Grails documentation is not very informative on this http://grails.org/doc/latest/guide/GORM.html#caching .
Btw. I'm using Grails 2.2.1.
Ok, found the reason. Seems Hibernate works this way by design. It's described here http://planet.jboss.org/post/collection_caching_in_the_hibernate_second_level_cache
This part:
So the fix was to inject in Controller
and manually invalidate collections cache in save() method