Wp forms take highest execution use class loader
-
Hi,
I found wpforms takes high execution time on my website that cause impact on speed performance how can optimize code for wpforms where can I add foo class
performance details as below
Script performance: time 0.092260 sec
Method and functions performance: time 0.085212 sec/** * Finds the path to the file where the class is defined. * * @param string $class The name of the class * * @return string|false The path if found, false otherwise */ public function findFile($class) { // class map lookup if (isset($this->classMap[$class])) { return $this->classMap[$class]; } if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { return false; } if (null !== $this->apcuPrefix) { $file = apcu_fetch($this->apcuPrefix.$class, $hit); if ($hit) { return $file; } }The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Wp forms take highest execution use class loader’ is closed to new replies.