pub fn parallel_batch_process_chunked<T, R, F>(
items: &[T],
chunk_size: usize,
config: &BatchConfig,
func: F,
) -> Result<BatchResult<R>>Expand description
Process a batch in chunks
This is useful when you want to control memory usage by processing items in smaller batches.
§Arguments
items- Items to processchunk_size- Number of items per chunkconfig- Batch configurationfunc- Function to apply to each chunk
§Returns
Batch result containing successes and failures