Browse Source

Performance: Add `expires` index to antispm table to make purging old hashes a little quicker

pull/40/head
Michael Foster 11 years ago
parent
commit
10d59e949a
  1. 4
      install.php
  2. 3
      install.sql

4
install.php

@ -1,7 +1,7 @@
<?php
// Installation/upgrade file
define('VERSION', 'v0.9.6-dev-13');
define('VERSION', 'v0.9.6-dev-14');
require 'inc/functions.php';
@ -368,6 +368,8 @@ if (file_exists($config['has_installed'])) {
foreach ($boards as &$board) {
query(sprintf("ALTER TABLE ``posts_%s`` ADD INDEX `ip` (`ip`)", $board['uri'])) or error(db_error());
}
case 'v0.9.6-dev-13':
query("ALTER TABLE ``antispam`` ADD INDEX `expires` (`expires`)") or error(db_error());
case false:
// Update version number
file_write($config['has_installed'], VERSION);

3
install.sql

@ -29,7 +29,8 @@ CREATE TABLE IF NOT EXISTS `antispam` (
`expires` int(11) DEFAULT NULL,
`passed` smallint(6) NOT NULL,
PRIMARY KEY (`hash`),
KEY `board` (`board`,`thread`)
KEY `board` (`board`,`thread`),
KEY `expires` (`expires`)
) ENGINE=MyISAM DEFAULT CHARSET=ascii COLLATE=ascii_bin;
-- --------------------------------------------------------

Loading…
Cancel
Save