I am facing a problem when generating PDF document with REST API call using PHP. API returning more than 10k results but my script timed out and script can't generate the document. The REST API is for OpenSearchSever and I am using opensearchserver-php-client. For generating PDF I am using mPDF.
After some research, I find out some solution something like this
set_time_limit(0);
ini_set('memory_limit','1200M');
Is any better way to do this without script to timed out? Thanks :)
1.2GB
to generate apdf
seems way to much, check if your code doesn't have any memory leaks. Try to convert a very simple file, if it takes to much time, the problem may be related to the api.The functions I use to keep a script running for as much time as it needs are:
ignore_user_abort(1);
set_time_limit(0);