Website Performance
-
Hello
I am trying to check how the plugin is working, for that, I enabled MySQL logs. I see that the plugin is search for almost all received URLs to check whether they are short links or not. To do that, it searches in the DB in the table wp_short_links. Example
SELECT * FROM wp_short_links WHERE link_name = ‘n/4956’ << Real short link
SELECT * FROM wp_short_links WHERE link_name = ‘wp-content/uploads/2020/10/9102020pm-v-3.jpg’ <<< Not a short linkI see that the table wp_short_links has no index on the column link_name
The plugin has no cache, it always searches for the link even if it has searched for it before.Do you believe that could impact the performance of my website if I have around 10-20 concurrent users?
- The topic ‘Website Performance’ is closed to new replies.