Hello one little DB update, after which DB will be faster.
(Index will be larger, but also faster - more unique records in index)
Note that this update is independent of last one, so hope Dave will include it in official release even if the last one will wait a little.
Whole change is about index size for originaltext - it was changed from 50 to 323 (max according to mysql limitations).
For new installations - code for wt_cache is different now:
Code:
CREATE TABLE wt_cache (
id INT AUTO_INCREMENT NOT NULL PRIMARY KEY,
tl VARCHAR(10),
originaltext VARCHAR(65000),
translated TEXT,
INDEX(originaltext(323), tl)
) ENGINE = MYISAM, CHARACTER SET utf8 COLLATE utf8_bin;
For update just execute:
Code:
alter table wt_cache drop index originaltext;
create INDEX originaltext on wt_cache(originaltext(323), tl);
As I wrote it is faster. Here you have results of test before update:
MIN: 3141 MAX: 9109 AVG: 5389
MIN: 3297 MAX: 24891 AVG: 5252
MIN: 2828 MAX: 7500 AVG: 4296
MIN: 2609 MAX: 25594 AVG: 5934
MIN: 3438 MAX: 7890 AVG: 4782
MIN: 3578 MAX: 5485 AVG: 4196
TOTAL AVG: 4974
And here after update:
MIN: 2813 MAX: 28016 AVG: 5785
MIN: 2813 MAX: 5187 AVG: 4021
MIN: 3016 MAX: 5109 AVG: 4159
MIN: 2953 MAX: 6750 AVG: 4228
MIN: 2735 MAX: 7938 AVG: 4109
MIN: 3359 MAX: 7125 AVG: 4607
TOTAL AVG: 4484
Each test was generating 20 translated pages in each series. There was 3 series for each test. Each test was executed twice. Times are in ms.
Note that there is still place for some little improvements - like column
tl uses max 5 signs and is set for 10... Also it is enough for
tl to set encoding 'iso-8859-1' instead of utf8, so it will reserve only 5 bytes in index instead 30 like now, and index for originaltext will be longer to something like 331 letters (now upgraded have 323). But it shouldn’t give any significant speed improvements. So I leave this topic.