- About
- Archives
- Android Apps
- Search
- Words-Solver.com
- Draw Something Words Solver
- Draw Something ordet Problemløseren norske
- Draw Something palavras solver português
- Draw Something woord solver Nederlands
- Draw Something 字词破解 中文(繁体)
- Draw Something ordet lösare svenska
- Draw Something 워드 솔버 한국의
- Draw Something ワードソルバ 日本の
- Draw Something parola solver italiano
- Draw Something mots solveur français
- Draw Something solucionador de la palabra español
- Draw Something Word Solver English
- Draw Something Wörter-Löser Deutsch
- Draw Something ord Solver Danish
- Draw Something 字词破解 中文(简体)
- Scramble with Friends Words Solver
- Hanging with Friends Words Solver
- Hanging with Friends Words Builder
- Rumble Words Solver
- Scrabble Word Finder
- Chicktionary Solver
- Conundra Solver
- PopWords Solver
- Scramble Solver 5×5
- Scramble Solver 6×6
- Word Racer Solver
- Draw Something Words Solver
- Games Answers
Share this page :
I think this is one of the top 10 wordpress plugin that a lot of people using now – Visitor Maps and Who’s Online.
You can download in here
If you have a lot of visitor visit your blog / website that using this plugin, this plugin may slow down your MySQL.
MySQL will show that some query that SELECT from wp_visitor_maps_wo is not using indexes.
For more information about How MySQL Uses Indexes click here.
Here is the way to trace out that your query is not using index.
# vi /etc/my.cnf
slow_query_log=1
log_slow_queries = /var/log/mysql/log-slow-queries.log
long_query_time = 10
log-queries-not-using-indexes
# service mysqld restart
Try to load your wordpress site with Visitor Maps and Who’s Online plugin installed and activated.
Then
# tail /var/log/mysql/log-slow-queries.log
You may see this code. This may slow down your MySQL performance.
SELECT count(*) FR0M wp_visitor_maps_wo
WHERE (name = 'Guest' AND time_last_click > '1284278942')
0R (user_id > '0' AND time_last_click > '1284278942');
Because we know that SELECT count(*) always use up a lot of MySQL resources.
So, we should add index to the table field.
# mysql -u -p
mysql > alter table wp_visitor_maps_wo add index(time_last_click);
or you can add the INDEX using phpMyAdmin to the field time_last_click in table wp_visitor_maps_wo
After this, try to reload your website for few times, and check the /var/log/mysql/log-slow-queries.log appear the SQL again or not. Remember to turn off the slow_query_log from slow_query_log=1 to slow_query_log=0 after the tuning.
Some people are looking for:
- wp_visitor_maps_wo
Link to this post!
Share this page :
Tagged with: log slow query • log-queries-not-using-indexes • long query time • optimize mysql • optimize visitor maps • optimize wordpress • wordpress
If you enjoyed this article, please consider sharing it!
One Response to Tuning WordPress Plugin – Visitor Maps and Who’s Online
Search
Like Us
Buy me a Caffè Latte
Thank you for the Caffè Latte
2013/02/15 saw art
2013/01/25 Parul Patel
2012/11/20 Barbara Nicholas $10
2012/10/08 Amy Stockman $5
2012/07/15 siewho chang $ 50
2012/06/08 Susan Hampton $10
2012/05/11 Chris Grima $10Other Escape Games
- Doors & Rooms
- 100 Floors ( Main )
- 100 Floors ( Annex )
- 100 Floors ( Season Tower )
- 100 Floors ( Christmas )
- Dooors
- 100 Exits
- 100 Doors
- 100 Doors X
- 100 Rooms
- 100 Gates
- 100 Chambers
- 200 Doors Time Machine
- Mobai Room 1
- Garou Escape Game
- Stalker Room Escape
- White Room
- 3 Doors Escape
- 100 Lights
- Can you open it ?
- 100 Doors 2013
- Factory 96
- Tap Play
Other Logo Quiz Game
- Logos Quiz Game by Atico Mobile S.L. ( iPhone, Android ) (800++ Logos)
- Logo Quiz Classic by Bubble Quiz Game ( Android ) ( 900+ Logos )
- Logo Quiz Ultimate by Bubble Quiz game ( Android ) ( 800+ Logos )
- Logo Quiz by Addictive Mind Puzzlers ( Android )
- Logo Quiz by J-roen ( Android )
- Logo Quiz by Jinfra ( Android )
- Logo Quiz Fun Plus ( Android )
- Logo Quiz Emerging Game ( 1000+ Logos )
- Icon Pop Quiz ( 400+ Icons )
Recent Posts
- What’s the Saying Answers Updated with Variety 1, Variety 2, Clever, Cunning, Witty, Brainy, Astute, Intense
- Answers for 6 Numbers Easy Medium Hard Ultimate for iPhone, iPad, Android
- Emoji Pop Answers, Cheats for iPhone, iPad, Android
- Answers for Icomania Level 15,16,17 Updated
- Little Riddles Answers and Cheats
- Pic Combo Answers and Cheats
- Stupidness 3 Walkthrough
- What’s the Saying Answers
- Zoomed In Answers
- Draw Something 2 Solver for iPhone Android
Translate
Linux
- How to Install fail2ban on CentOS in DirectAdmin
- Installing Firewall using csf(ConfigServer Security & Firewall) on DirectAdmin
- Starting MySQL… ERROR! The server quit without updating PID file
- How to enable mod_ban for ProFTPD in CentOS with DirectAdmin
- Only one top level element is allowed in an XML document while using LR/Blog
Thanks man,
today i found that i had the same problem. had a simple ddos, about 100 ip executed to this plugin.
Created this index.