Viewing 1 replies (of 1 total)
  • Plugin Author Ajay

    (@ajay)

    Yes. This should work fine. It’s important though that you turn the inbuilt cache in the plugin ON since it massively reduces the queries post the first load.

    Note that the problem that you might face would be on activation if you have a huge number of posts. If you’re getting stuck with this, then you might want to run these queries in phpMyAdmin before activating the plugin.

    ALTER TABLE wp_posts DROP INDEX crp_related;
    ALTER TABLE wp_posts DROP INDEX crp_related_title;
    ALTER TABLE wp_posts DROP INDEX crp_related_content;
    ALTER TABLE wp_posts ADD FULLTEXT crp_related (post_title, post_content);
    ALTER TABLE wp_posts ADD FULLTEXT crp_related_title (post_title);
    ALTER TABLE wp_posts ADD FULLTEXT crp_related_content (post_content);
Viewing 1 replies (of 1 total)
  • The topic ‘Use of server resources’ is closed to new replies.