Quote:
Originally Posted by Dave Hybrid
v2.4 Official Release
* More DB optimization, fastest ever read/write cache speed 
|
You gave update procedure but forgot to change installation description in one detail - wt_cache has larger index since v2.3b - you set it back the short one
It should be:
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;