Note: You are currently viewing documentation for Moodle 3.2. Up-to-date documentation for the latest stable version of Moodle is probably available here: Performance settings.

Performance settings

From MoodleDocs

Performance settings

Various performance settings can be changed by an administrator in Administration > Site administration > Server > Performance.

The setting "Maximum time limit" lets you restrict the maximum PHP execution time that Moodle will allow without any output being displayed. If you have a front-end server with its own time limit, set this value lower to receive PHP errors in logs.

Other site administration settings which may affect performance

  • Enable the language cache.
  • Large log files can cause overall performance to degrade over time. If you observe that the site has gradually got slower loading pages in the browser, reduce your Log life time setting in Administration > Site administration > Server > Cleanup
  • Check your filters. Having too many filters active can have serious effects on server load, especially on lower-end systems. The number of active filters has a direct effect on the perceived latency of your site; that is the time taken for each page impression. Check if any of the filters can be disabled. For example, if your site does not need to be able to display mathematical equations you can disable the MathJax filter.
  • Enable the text cache but do not "Filter all strings" unless you have a specific need. If in doubt profile the performance, and see how your changes affect the processing time.
  • Check your anti-virus measures on the server. Although they are useful for preventing security holes being exploited, some "On-Demand" scanners can affect performance by scanning page content (word, ppt files etc).
  • Check your forum settings. To improve performance set forum_trackreadposts = No and forum_usermarksread = Yes (this will impact on the convenience of your users' forum experience). Also consider setting the time of the day when old posts are cleared from the read table (forum_cleanreadtime) to when your site is less busy.
  • Don't use database sessions unless you really need them. On-disc sessions tend to be much faster.

config.php settings which may affect performance

Increasing the value of CONTEXT_CACHE_MAX_SIZE may reduce the number of database queries for certain pages. It will also increase memory usage, so be careful.

// Moodle 2.3: Increasing this from the default saved about > 1000 db queries on the course/index.php page for // a Moodle having 1250 course categories. // This value is specified in lib/accesslib.php, but it's OK to add a define for it in config.php: define('CONTEXT_CACHE_MAX_SIZE', 7500);

See also