ToastTupleTargetParameter
PostgreSQL toast_tuple_target parameter.
Controls the minimum tuple length required before TOAST compression is attempted. Larger values may reduce CPU overhead at the cost of storage space.
Example:
object Documents : Table("documents") {
override val storageParameters = listOf(Table.ToastTupleTargetParameter(8160))
}Content copied to clipboard
Generates: toast_tuple_target=8160