Changing search

Changing search

UPDATE post
SET post_content_filtered = REPLACE(
    REPLACE(
        REPLACE(
            REPLACE(
                REPLACE(
                    REPLACE(
                        REPLACE(post_title, ":", ""),
                        "?", ""
                    ),
                    "#", ""
                ),
                "/", ""
            ),
            "-", ""
        ),
        " ", ""
    ),
    ".", ""
);

While keeping the ranking

  • old: 1.2 Seconds

  • new: 0.8151 Seconds

Some form of ranking Selected to implement response: 0.0046 Second

without ranking and only matching to left response:0.0028

Last updated