nodeChunkSize

const val nodeChunkSize: Int = 10000

Specifies the maximum number of nodes to be processed in a single chunk during persistence operations.

This constant is used to control the size of batches when persisting a list of nodes to the database. Breaking the list into chunks of this size helps improve performance and memory efficiency during database writes. Each chunk is handled individually, ensuring that operations remain manageable even for large data sets.