The MySQL call in /www/inc/issues.php:62 ``` $q = $this->db->query("SELECT iid,chance FROM issue_table ORDER BY RAND()"); ``` This is very inefficient, as it forces the entire table to be indexed per call.
The MySQL call in /www/inc/issues.php:62
This is very inefficient, as it forces the entire table to be indexed per call.