I have been asked to check feasibility to implement below requirement,
I want to confirm if this is possible to generate 2000 files quickly. If yes then how to do it without getting performance issues.
Discussion posts and replies are publicly visible
You can achieve this using batching and asynchronous execution approach in shorter time.
Hemant Borate said:I want to confirm if this is possible to generate 2000 files quickly. If yes then how to do it without getting performance issues.
But if you want the user to wait (chaining) until everything is completed, it will impact performance for the end user.I would suggest, for a better user experience, that after the file is completed, you can generate a task for the user to review.
yeah, i also thought of displaying result later on so that user doesn't need to wait till whole batch processing completed.
Anyways thanks for the response.