sql >> Databasteknik >  >> RDS >> Mysql

Ställ in maximal körningstid i MYSQL / PHP

Du kan klara det genom att ställa in set_time_limit i din php-kod (ställ till 0 för no limit)

set_time_limit(0);

Eller ändra värdet på max_execution_time direkt i din php.ini

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

; Maximum execution time of each script, in seconds
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
max_execution_time = 120  

Eller ändra det med ini_set()

ini_set('max_execution_time', 120); //120 seconds

men notera att för detta tredje alternativ:

Källa www.php.net



  1. Öka värdet i MySQL-uppdateringsfrågan

  2. Öka prestanda med Bulk Collect i Oracle

  3. Hur man listar alla tabeller i Oracle

  4. MySQL CURRENT_TIMESTAMP vid skapande och vid uppdatering