Opened 16 years ago
Last modified 16 years ago
#43 new enhancement
Base type domain classes should have caching enabled — at Version 1
| Reported by: | Gavin | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 0.x - Future |
| Component: | gnuMims - application general | Version: | trunk |
| Keywords: | Cc: |
Description (last modified by )
The '*Type' classes that don't change often should have caching enabled to improve performance.
- Period
- TaskType
- etc
To turn on hibernate second level caching for these classes do something like:
static mapping = {
cache true
}
or limit caching to non-lazy:
cache usage:'read-write', include:'non-lazy'
Note: See
TracTickets for help on using
tickets.
