It means your script can use 30s of CPU time for each request to the worker, which is more than enou

It means your script can use 30s of CPU time for each request to the worker, which is more than enough for a regular website.
CPU time is time spent processing stuff (example parsing JSON files), not waiting for a response from external services (such as fetching from a database).
You also need to take into consideration the memory limit which is 128 MB. It's more than enough for a normal site. You'll only run into issues if you are processing huge amounts of data like large file uploads in a bad way.
Was this page helpful?