2 -- hitcounter table is used to buffer page hits before they are periodically
3 -- counted and added to the cur_counter column in the cur table.
7 CREATE TABLE /*$wgDBprefix*/hitcounter (
8 hc_id INTEGER UNSIGNED NOT NULL
9 ) ENGINE=HEAP MAX_ROWS=25000;