ソースを参照

New index in post tables for listing threads slightly faster (index pages)

tags/vichan-devel-4.4.92
Michael Foster 10年前
コミット
22fcca343f
2個のファイルの変更8行の追加2行の削除
  1. +6
    -1
      install.php
  2. +2
    -1
      templates/posts.sql

+ 6
- 1
install.php ファイルの表示

@@ -1,7 +1,7 @@
<?php

// Installation/upgrade file
define('VERSION', 'v0.9.6-dev-15');
define('VERSION', 'v0.9.6-dev-16');

require 'inc/functions.php';

@@ -381,6 +381,11 @@ if (file_exists($config['has_installed'])) {
query("ALTER TABLE ``bans`` ADD INDEX `ip` (`ip`)") or error(db_error());
query("ALTER TABLE ``noticeboard`` ADD INDEX `time` (`time`)") or error(db_error());
query("ALTER TABLE ``pms`` ADD INDEX `to` (`to`, `unread`)") or error(db_error());
case 'v0.9.6-dev-15':
foreach ($boards as &$board) {
query(sprintf("ALTER TABLE ``posts_%s``
ADD INDEX `list_threads` (`thread`, `sticky`, `bump`)", $board['uri'])) or error(db_error());
}
case false:
// Update version number
file_write($config['has_installed'], VERSION);


+ 2
- 1
templates/posts.sql ファイルの表示

@@ -29,6 +29,7 @@ CREATE TABLE IF NOT EXISTS ``posts_{{ board }}`` (
KEY `thread_id` (`thread`,`id`),
KEY `filehash` (`filehash`(40)),
KEY `time` (`time`),
KEY `ip` (`ip`)
KEY `ip` (`ip`),
KEY `list_threads` (`thread`, `sticky`, `bump`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

読み込み中…
キャンセル
保存