transients
Thetransients property declares a list of property names that should not be stored in Cassandra. Typically these
are read-only properties implemented with getter methods. For example:class Author
{
String name String getUpperCaseName() { name.toUpperCase() } static transients = ['upperCaseName']
}