if i have a php background job, may need to run 4-5hours or more
will it cause exception on memory_limit
if i have a php background job, may need to run 4-5hours or more
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
PHP has a very primitive memory manager and scripts are not designed to run for very long. You can update the memory limit like this:
But you will probably still have memory problems. You could try adding a ton of unset()’s to your script and this can help a bit. But the memory leaks are probably in PHP and its C/C++ extensions which you can’t control. In the past I have had to rewrite background tasks in Java.