Microflow & Performance

0
What’s the best way to improve performance when handling 10,000+ records in a microflow? Should I use batching or pagination?
asked
1 answers
1

Use batching (looping in chunks using limit/offset or list slicing) instead of processing all records at once. This reduces memory pressure and avoids timeouts. You can also run heavy tasks in background microflows or scheduled events.

answered