Changing table wp_postmeta for better performance?
-
Was looking at possible ways to improve performance and came across this
http://mysql.rjweb.org/doc.php/index_cookbook_mysql#speeding_up_wp_postmeta
CREATE TABLE wp_postmeta ( post_id BIGINT UNSIGNED NOT NULL, meta_key VARCHAR(255) NOT NULL, meta_value LONGTEXT NOT NULL, PRIMARY KEY(post_id, meta_key), INDEX(meta_key) ) ENGINE=InnoDB;Anyone have experience or recommend this be done?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Changing table wp_postmeta for better performance?’ is closed to new replies.