mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-60583 webservice: Add index to improve token lookup performance
Without this index every webservice call will do a full table scan when it tries to validate a token. On a busy site with many tokens this adds unnecessary load to the database.
This commit is contained in:
parent
c11e2517a7
commit
b6c7a25d60
3 changed files with 17 additions and 2 deletions
|
@ -29,7 +29,7 @@
|
|||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2020062600.00; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
$version = 2020062600.01; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
// RR = release increments - 00 in DEV branches.
|
||||
// .XX = incremental changes.
|
||||
$release = '4.0dev (Build: 20200626)'; // Human-friendly version name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue