0.0001411
| Memory Before: 1.41 Mb
| Memory After: 1.41 Mb
| Memory Used: 4.78 kb
| Rows: 5
| Slave: No
SELECT p.call_name, p.php_code
FROM phpfox_plugin
AS p
JOIN phpfox_product
AS product
ON(p.product_id = product.product_id AND product.is_active = 1)
JOIN phpfox_plugin_hook
AS ph
ON(ph.call_name = p.call_name AND ph.is_active = 1)
JOIN phpfox_module
AS m
ON(m.module_id = p.module_id AND m.is_active = 1)
WHERE p.is_active = 1
ORDER BY p.ordering ASC
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | p | ALL | is_active | MISSING KEY | | | 5 | Using where; Using filesort |
| 1 | SIMPLE | ph | ref | call_name | call_name | 258 | sqlgipsol.p.call_name,const | 1 | Using where; Using index |
| 1 | SIMPLE | product | ref | is_active,product_active,product_id | product_active | 28 | sqlgipsol.p.product_id,const | 3 | Using index |
| 1 | SIMPLE | m | ref | is_active,module_id,module_is_active | module_is_active | 78 | sqlgipsol.p.module_id,const | 8 | Using index |
0.0006471
| Memory Before: 2.42 Mb
| Memory After: 2.42 Mb
| Memory Used: 3.86 kb
| Rows: 1
| Slave: No
SELECT s.session_hash, s.id_hash, s.captcha_hash, s.user_id
FROM phpfox_log_session
AS s
WHERE s.session_hash = '175fa3b69a746ccc4dd8d13d49e86384' AND s.id_hash = '0d574f7196f9f96e319d05681455513d'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | s | ref | session_hash,log_session | session_hash | 32 | const | 1 | Using index condition; Using where |
0.0004699
| Memory Before: 2.43 Mb
| Memory After: 2.43 Mb
| Memory Used: 1.41 kb
| Rows: -
| Slave: No
UPDATE phpfox_log_session
SET last_activity = '1775488032', user_id = '0', location = '/pages/12/wall', is_forum = '0', forum_id = '0', im_hide = '0', ip_address = '216.73.216.132', user_agent = 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.'
WHERE session_hash = '175fa3b69a746ccc4dd8d13d49e86384'
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_log_session | ref | session_hash,log_session | session_hash | 32 | const | 1 | Using index condition |
0.0002410
| Memory Before: 3.75 Mb
| Memory After: 3.75 Mb
| Memory Used: 4.97 kb
| Rows: 1
| Slave: No
SELECT s.style_id, s.parent_id
AS style_parent_id, s.folder
AS style_folder_name, t.folder
AS theme_folder_name, t.parent_id
AS theme_parent_id, t.total_column, s.l_width, s.c_width, s.r_width
FROM phpfox_theme_style
AS s
JOIN phpfox_theme
AS t
ON(t.theme_id = s.theme_id)
WHERE s.is_default = 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | s | ref | is_default | is_default | 1 | const | 1 | |
| 1 | SIMPLE | t | eq_ref | PRIMARY,theme_id | PRIMARY | 2 | sqlgipsol.s.theme_id | 1 | |
0.0001030
| Memory Before: 3.75 Mb
| Memory After: 3.76 Mb
| Memory Used: 3.18 kb
| Rows: 1
| Slave: No
SELECT folder
AS parent_style_folder
FROM phpfox_theme_style
WHERE style_id = 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_style | const | style_id_2,style_id | style_id_2 | 2 | const | 1 | |
0.0020130
| Memory Before: 5.59 Mb
| Memory After: 5.61 Mb
| Memory Used: 21.14 kb
| Rows: 1
| Slave: Yes
SELECT f.friend_id
AS is_friend, p.*, u.user_image as image_path, p.image_path as pages_image_path, u.user_id as page_user_id, p.use_timeline, pc.claim_id, pu.vanity_url, pg.name
AS category_name, pg.page_type, pt.text_parsed
AS text, l.like_id
AS is_liked, u.full_name, ts.style_id
AS designer_style_id, ts.folder
AS designer_style_folder, t.folder
AS designer_theme_folder, t.total_column, ts.l_width, ts.c_width, ts.r_width, t.parent_id
AS theme_parent_id, u2.user_id
AS owner_user_id, u2.profile_page_id
AS owner_profile_page_id, u2.server_id
AS owner_server_id, u2.user_name
AS owner_user_name, u2.full_name
AS owner_full_name, u2.gender
AS owner_gender, u2.user_image
AS owner_user_image, u2.is_invisible
AS owner_is_invisible, u2.user_group_id
AS owner_user_group_id, u2.language_id
AS owner_language_id, u2.last_activity
AS owner_last_activity
FROM phpfox_pages
AS p
LEFT JOIN phpfox_friend
AS f
ON(f.user_id = p.user_id AND f.friend_user_id = 0)
JOIN phpfox_pages_text
AS pt
ON(pt.page_id = p.page_id)
JOIN phpfox_user
AS u
ON(u.profile_page_id = p.page_id)
JOIN phpfox_user
AS u2
ON(u2.user_id = p.user_id)
LEFT JOIN phpfox_pages_url
AS pu
ON(pu.page_id = p.page_id)
LEFT JOIN phpfox_pages_category
AS pg
ON(pg.category_id = p.category_id)
LEFT JOIN phpfox_like
AS l
ON(l.type_id = 'pages' AND l.item_id = p.page_id AND l.user_id = 0)
LEFT JOIN phpfox_theme_style
AS ts
ON(ts.style_id = p.designer_style_id)
LEFT JOIN phpfox_theme
AS t
ON(t.theme_id = ts.theme_id)
LEFT JOIN phpfox_pages_claim
AS pc
ON(pc.page_id = p.page_id AND pc.user_id = 0)
WHERE p.page_id = 12
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | pg | system | PRIMARY,category_id | MISSING KEY | | | | Const row not found |
| 1 | SIMPLE | pc | system | page_id | MISSING KEY | | | | Const row not found |
| 1 | SIMPLE | p | const | PRIMARY,page_id | PRIMARY | 4 | const | 1 | |
| 1 | SIMPLE | f | const | user_check,user_id,top_friend,friend_user_id | user_check | 8 | const,const | | Unique row not found |
| 1 | SIMPLE | pt | const | page_id | page_id | 4 | const | 1 | |
| 1 | SIMPLE | u2 | const | PRIMARY,user_id | PRIMARY | 4 | const | 1 | |
| 1 | SIMPLE | u | ref | page_id | page_id | 4 | const | 1 | |
| 1 | SIMPLE | pu | ref | page_id | page_id | 4 | const | 1 | |
| 1 | SIMPLE | l | ref|filter | type_id,type_id_2,type_id_3,item_id | type_id_3|item_id | 81|4 | const,const | 1 (1%) | Using where; Using rowid filter |
| 1 | SIMPLE | ts | eq_ref | style_id_2,style_id | style_id_2 | 2 | const | 1 | |
| 1 | SIMPLE | t | eq_ref | PRIMARY,theme_id | PRIMARY | 2 | sqlgipsol.ts.theme_id | 1 | Using where |
0.0006101
| Memory Before: 5.7 Mb
| Memory After: 5.7 Mb
| Memory Used: 4.02 kb
| Rows: 13
| Slave: Yes
SELECT *
FROM phpfox_pages_perm
WHERE page_id = 12
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_pages_perm | ref | page_id | page_id | 4 | const | 13 | |
0.0004900
| Memory Before: 5.71 Mb
| Memory After: 5.71 Mb
| Memory Used: 5.45 kb
| Rows: 0
| Slave: Yes
SELECT pw.*, pwt.text_parsed
AS text
FROM phpfox_pages_widget
AS pw
JOIN phpfox_pages_widget_text
AS pwt
ON(pwt.widget_id = pw.widget_id)
WHERE pw.page_id = 12
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | | | | MISSING KEY | | | | Impossible WHERE noticed after reading const tables |
0.0002151
| Memory Before: 9.35 Mb
| Memory After: 9.36 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'layout' AND name = 'template.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition |
0.0002401
| Memory Before: 10.93 Mb
| Memory After: 10.93 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'core' AND name = 'template-body.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0002060
| Memory Before: 11.01 Mb
| Memory After: 11.02 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'higipsol' AND name = 'cabecera.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0002232
| Memory Before: 11.16 Mb
| Memory After: 11.16 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'hispalanguage' AND name = 'select.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0001159
| Memory Before: 11.18 Mb
| Memory After: 11.18 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'base5' AND module_id = 'core' AND name = 'block/template-menu.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0001771
| Memory Before: 22.34 Mb
| Memory After: 22.35 Mb
| Memory Used: 3.16 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'base5' AND module_id = 'core' AND name = 'block/template-menu.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0001640
| Memory Before: 22.36 Mb
| Memory After: 22.36 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'core' AND name = 'template-holdername.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0002718
| Memory Before: 22.71 Mb
| Memory After: 22.73 Mb
| Memory Used: 23.31 kb
| Rows: 117
| Slave: Yes
SELECT cf.*, cmv.option_id as customValue, cg.user_group_id as cg_user_group_id
FROM phpfox_custom_field
AS cf
LEFT JOIN phpfox_custom_option
AS cmv
ON(cmv.field_id = cf.field_id)
JOIN phpfox_module
AS m
ON(m.module_id = cf.module_id AND m.is_active = 1)
LEFT JOIN phpfox_custom_group
AS cg
ON(cg.group_id = cf.group_id)
WHERE cf.type_id IN ('user_main','user_panel','profile_panel') AND cf.is_active = 1 AND cf.user_group_id = 0
ORDER BY cf.ordering ASC
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | cf | ALL | | MISSING KEY | | | 83 | Using where; Using filesort |
| 1 | SIMPLE | cg | eq_ref | PRIMARY | PRIMARY | 2 | sqlgipsol.cf.group_id | 1 | |
| 1 | SIMPLE | cmv | ref | field_id | field_id | 2 | sqlgipsol.cf.field_id | 11 | |
| 1 | SIMPLE | m | ref | is_active,module_id,module_is_active | module_is_active | 78 | sqlgipsol.cf.module_id,const | 8 | Using index |
0.0001581
| Memory Before: 23.01 Mb
| Memory After: 23.02 Mb
| Memory Used: 5.93 kb
| Rows: 72
| Slave: Yes
SELECT *
FROM phpfox_custom_option
WHERE field_id IN(93,22,9,79,80,81,48,33,38,51,53,54,55,58,59,61,62,63,64,66,68,69,70,71,72,73,74,75,76,77)
ORDER BY option_id ASC
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_custom_option | ALL | field_id | MISSING KEY | | | 83 | Using where; Using filesort |
0.0002098
| Memory Before: 22.88 Mb
| Memory After: 22.88 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'base5' AND module_id = 'profile' AND name = 'block/header.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0001719
| Memory Before: 23.17 Mb
| Memory After: 23.17 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'base5' AND module_id = 'profile' AND name = 'block/pic.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0007191
| Memory Before: 23.09 Mb
| Memory After: 23.09 Mb
| Memory Used: 3.73 kb
| Rows: 3
| Slave: Yes
SELECT user_id, user_privacy, user_value
FROM phpfox_user_privacy
WHERE user_id = 192
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_user_privacy | ref | user_id,user_id_2 | user_id_2 | 4 | const | 2 | |
0.0002089
| Memory Before: 22.97 Mb
| Memory After: 22.98 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'layout' AND name = 'search.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition |
0.0002160
| Memory Before: 22.99 Mb
| Memory After: 22.99 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'core' AND name = 'template-contentclass.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0002050
| Memory Before: 22.99 Mb
| Memory After: 22.99 Mb
| Memory Used: 3.17 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'layout' AND name = 'error.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition |
0.0001199
| Memory Before: 23 Mb
| Memory After: 23 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'controller' AND module_id = 'pages' AND name = 'view.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0004821
| Memory Before: 23.59 Mb
| Memory After: 23.59 Mb
| Memory Used: 3.42 kb
| Rows: 0
| Slave: Yes
SELECT var_name, user_value
FROM phpfox_component_setting
WHERE user_id = 193
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | | | | MISSING KEY | | | | Impossible WHERE noticed after reading const tables |
0.0008502
| Memory Before: 23.59 Mb
| Memory After: 23.6 Mb
| Memory Used: 8.35 kb
| Rows: 1
| Slave: Yes
SELECT feed.*, u.user_id, u.profile_page_id, u.server_id
AS user_server_id, u.user_name, u.full_name, u.gender, u.user_image, u.is_invisible, u.user_group_id, u.language_id, u.last_activity, u.view_id
FROM phpfox_pages_feed
AS feed
JOIN phpfox_user
AS u
ON(u.user_id = feed.user_id)
WHERE feed.parent_user_id = 12
ORDER BY feed.time_update
DESC
LIMIT 4
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | feed | ref | parent_user_id | parent_user_id | 4 | const | 2 | Using where; Using filesort |
| 1 | SIMPLE | u | eq_ref | PRIMARY,user_id | PRIMARY | 4 | sqlgipsol.feed.user_id | 1 | |
0.0022790
| Memory Before: 23.72 Mb
| Memory After: 23.73 Mb
| Memory Used: 5.48 kb
| Rows: 1
| Slave: Yes
SELECT e.event_id, e.module_id, e.item_id, e.title, e.time_stamp, e.image_path, e.server_id, e.total_like, e.total_comment, et.description_parsed, l.like_id
AS is_liked
FROM phpfox_fevent
AS e
LEFT JOIN phpfox_like
AS l
ON(l.type_id = 'fevent' AND l.item_id = e.event_id AND l.user_id = 0)
LEFT JOIN phpfox_fevent_text
AS et
ON(et.event_id = e.event_id)
WHERE e.event_id = 7540
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | e | const | PRIMARY | PRIMARY | 4 | const | 1 | |
| 1 | SIMPLE | l | ref|filter | type_id,type_id_2,type_id_3,item_id | type_id_3|item_id | 81|4 | const,const | 1 (1%) | Using where; Using rowid filter |
| 1 | SIMPLE | et | ref | event_id | event_id | 4 | const | 1 | |
0.0011270
| Memory Before: 23.77 Mb
| Memory After: 23.77 Mb
| Memory Used: 6.7 kb
| Rows: 0
| Slave: Yes
SELECT l.*, u.user_id, u.profile_page_id, u.server_id
AS user_server_id, u.user_name, u.full_name, u.gender, u.user_image, u.is_invisible, u.user_group_id, u.language_id, u.last_activity, a.time_stamp as action_time_stamp
FROM phpfox_like
AS l
JOIN phpfox_user
AS u
ON(u.user_id = l.user_id)
LEFT JOIN phpfox_action
AS a
ON(a.item_id = l.item_id AND a.user_id = l.user_id AND a.item_type_id = "fevent")
WHERE (l.type_id = 'fevent' OR l.type_id = 'fevent') AND l.item_id = 7540
GROUP BY u.user_id
ORDER BY l.time_stamp
DESC
LIMIT 3
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | a | system | type_id,type_id_2,type_id_3,item_id | MISSING KEY | | | | Const row not found; Using temporary; Using filesort |
| 1 | SIMPLE | l | ref|filter | type_id,type_id_2,type_id_3,item_id | item_id|type_id_3 | 4|77 | const | 1 (8%) | Using where; Using rowid filter |
| 1 | SIMPLE | u | eq_ref | PRIMARY,user_id | PRIMARY | 4 | sqlgipsol.l.user_id | 1 | |
0.0005209
| Memory Before: 23.77 Mb
| Memory After: 23.77 Mb
| Memory Used: 3.13 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_like
AS l
WHERE (l.type_id = 'fevent' OR l.type_id = 'fevent') AND l.item_id = 7540
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | l | ref | type_id,type_id_2,type_id_3,item_id | type_id | 81 | const,const | 1 | Using where; Using index |
0.0003481
| Memory Before: 23.77 Mb
| Memory After: 23.78 Mb
| Memory Used: 5.36 kb
| Rows: 0
| Slave: Yes
SELECT u.user_id, u.profile_page_id, u.server_id
AS user_server_id, u.user_name, u.full_name, u.gender, u.user_image, u.is_invisible, u.user_group_id, u.language_id, u.last_activity
FROM phpfox_action
AS a
JOIN phpfox_user
AS u
ON(u.user_id = a.user_id)
WHERE a.item_type_id = "fevent" AND a.item_id = 7540
GROUP BY u.user_id
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | | | | MISSING KEY | | | | Impossible WHERE noticed after reading const tables |
0.0001190
| Memory Before: 23.78 Mb
| Memory After: 23.79 Mb
| Memory Used: 5.36 kb
| Rows: 0
| Slave: Yes
SELECT u.user_id, u.profile_page_id, u.server_id
AS user_server_id, u.user_name, u.full_name, u.gender, u.user_image, u.is_invisible, u.user_group_id, u.language_id, u.last_activity
FROM phpfox_action
AS a
JOIN phpfox_user
AS u
ON(u.user_id = a.user_id)
WHERE a.item_type_id = "fevent" AND a.item_id = 7540
GROUP BY u.user_id
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | | | | MISSING KEY | | | | Impossible WHERE noticed after reading const tables |
0.0001059
| Memory Before: 23.69 Mb
| Memory After: 23.69 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT count(*)
FROM phpfox_feed
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | | | | MISSING KEY | | | | Select tables optimized away |
0.0013649
| Memory Before: 23.83 Mb
| Memory After: 23.83 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1767225600' AND time_stamp <= '1798675200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 17 | Using index condition; Using where |
0.0124910
| Memory Before: 23.83 Mb
| Memory After: 23.83 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1735689600' AND time_stamp <= '1767139200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1255 | Using index condition; Using where |
0.0071340
| Memory Before: 23.83 Mb
| Memory After: 23.83 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1704067200' AND time_stamp <= '1735603200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1139 | Using index condition; Using where |
0.0061300
| Memory Before: 23.83 Mb
| Memory After: 23.83 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1672531200' AND time_stamp <= '1703980800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1328 | Using index condition; Using where |
0.0067711
| Memory Before: 23.83 Mb
| Memory After: 23.83 Mb
| Memory Used: 3.13 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1640995200' AND time_stamp <= '1672444800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1520 | Using index condition; Using where |
0.0072510
| Memory Before: 23.83 Mb
| Memory After: 23.84 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1609459200' AND time_stamp <= '1640908800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1310 | Using index condition; Using where |
0.0056231
| Memory Before: 23.83 Mb
| Memory After: 23.84 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1577836800' AND time_stamp <= '1609372800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 763 | Using index condition; Using where |
0.0050628
| Memory Before: 23.84 Mb
| Memory After: 23.84 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1546300800' AND time_stamp <= '1577750400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 691 | Using index condition; Using where |
0.0076721
| Memory Before: 23.84 Mb
| Memory After: 23.84 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1514764800' AND time_stamp <= '1546214400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1148 | Using index condition; Using where |
0.0077548
| Memory Before: 23.84 Mb
| Memory After: 23.84 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1483228800' AND time_stamp <= '1514678400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1224 | Using index condition; Using where |
0.0057831
| Memory Before: 23.84 Mb
| Memory After: 23.84 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1451606400' AND time_stamp <= '1483142400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 891 | Using index condition; Using where |
0.0019681
| Memory Before: 23.84 Mb
| Memory After: 23.85 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1420070400' AND time_stamp <= '1451520000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 249 | Using index condition; Using where |
0.0021780
| Memory Before: 23.84 Mb
| Memory After: 23.85 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1388534400' AND time_stamp <= '1419984000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 286 | Using index condition; Using where |
0.0005949
| Memory Before: 23.85 Mb
| Memory After: 23.85 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1356998400' AND time_stamp <= '1388448000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 62 | Using index condition; Using where |
0.0002198
| Memory Before: 23.85 Mb
| Memory After: 23.85 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1325376000' AND time_stamp <= '1356912000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001910
| Memory Before: 23.85 Mb
| Memory After: 23.85 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1293840000' AND time_stamp <= '1325289600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001991
| Memory Before: 23.85 Mb
| Memory After: 23.85 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1262304000' AND time_stamp <= '1293753600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001791
| Memory Before: 23.85 Mb
| Memory After: 23.85 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1230768000' AND time_stamp <= '1262217600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001810
| Memory Before: 23.85 Mb
| Memory After: 23.86 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1199145600' AND time_stamp <= '1230681600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001969
| Memory Before: 23.85 Mb
| Memory After: 23.86 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1167609600' AND time_stamp <= '1199059200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001891
| Memory Before: 23.86 Mb
| Memory After: 23.86 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1136073600' AND time_stamp <= '1167523200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001810
| Memory Before: 23.86 Mb
| Memory After: 23.86 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1104537600' AND time_stamp <= '1135987200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001869
| Memory Before: 23.86 Mb
| Memory After: 23.86 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1072915200' AND time_stamp <= '1104451200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001900
| Memory Before: 23.86 Mb
| Memory After: 23.86 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1041379200' AND time_stamp <= '1072828800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0002019
| Memory Before: 23.86 Mb
| Memory After: 23.87 Mb
| Memory Used: 3.14 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '1009843200' AND time_stamp <= '1041292800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001822
| Memory Before: 23.86 Mb
| Memory After: 23.87 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '978307200' AND time_stamp <= '1009756800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001910
| Memory Before: 23.87 Mb
| Memory After: 23.87 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '946684800' AND time_stamp <= '978220800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001800
| Memory Before: 23.87 Mb
| Memory After: 23.87 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '915148800' AND time_stamp <= '946598400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0002270
| Memory Before: 23.87 Mb
| Memory After: 23.87 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '883612800' AND time_stamp <= '915062400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0002081
| Memory Before: 23.87 Mb
| Memory After: 23.87 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '852076800' AND time_stamp <= '883526400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0002272
| Memory Before: 23.87 Mb
| Memory After: 23.87 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '820454400' AND time_stamp <= '851990400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0002172
| Memory Before: 23.87 Mb
| Memory After: 23.88 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '788918400' AND time_stamp <= '820368000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001762
| Memory Before: 23.87 Mb
| Memory After: 23.88 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '757382400' AND time_stamp <= '788832000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001938
| Memory Before: 23.88 Mb
| Memory After: 23.88 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '725846400' AND time_stamp <= '757296000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001891
| Memory Before: 23.88 Mb
| Memory After: 23.88 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '694224000' AND time_stamp <= '725760000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001771
| Memory Before: 23.88 Mb
| Memory After: 23.88 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '662688000' AND time_stamp <= '694137600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001740
| Memory Before: 23.88 Mb
| Memory After: 23.88 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '631152000' AND time_stamp <= '662601600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001800
| Memory Before: 23.88 Mb
| Memory After: 23.89 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '599616000' AND time_stamp <= '631065600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001769
| Memory Before: 23.88 Mb
| Memory After: 23.89 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '567993600' AND time_stamp <= '599529600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001862
| Memory Before: 23.89 Mb
| Memory After: 23.89 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '536457600' AND time_stamp <= '567907200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001800
| Memory Before: 23.89 Mb
| Memory After: 23.89 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '504921600' AND time_stamp <= '536371200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0002000
| Memory Before: 23.89 Mb
| Memory After: 23.89 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '473385600' AND time_stamp <= '504835200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001810
| Memory Before: 23.89 Mb
| Memory After: 23.89 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '441763200' AND time_stamp <= '473299200'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0002100
| Memory Before: 23.89 Mb
| Memory After: 23.89 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '410227200' AND time_stamp <= '441676800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0002050
| Memory Before: 23.89 Mb
| Memory After: 23.9 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '378691200' AND time_stamp <= '410140800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001860
| Memory Before: 23.89 Mb
| Memory After: 23.9 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '347155200' AND time_stamp <= '378604800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001838
| Memory Before: 23.9 Mb
| Memory After: 23.9 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '315532800' AND time_stamp <= '347068800'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001760
| Memory Before: 23.9 Mb
| Memory After: 23.9 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '283996800' AND time_stamp <= '315446400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001779
| Memory Before: 23.9 Mb
| Memory After: 23.9 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '252460800' AND time_stamp <= '283910400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001769
| Memory Before: 23.9 Mb
| Memory After: 23.9 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '220924800' AND time_stamp <= '252374400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001760
| Memory Before: 23.9 Mb
| Memory After: 23.9 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '189302400' AND time_stamp <= '220838400'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001838
| Memory Before: 23.9 Mb
| Memory After: 23.91 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '157766400' AND time_stamp <= '189216000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001791
| Memory Before: 23.9 Mb
| Memory After: 23.91 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '126230400' AND time_stamp <= '157680000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001760
| Memory Before: 23.91 Mb
| Memory After: 23.91 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '94694400' AND time_stamp <= '126144000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001721
| Memory Before: 23.91 Mb
| Memory After: 23.91 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '63072000' AND time_stamp <= '94608000'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001822
| Memory Before: 23.91 Mb
| Memory After: 23.91 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '31536000' AND time_stamp <= '62985600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0001791
| Memory Before: 23.91 Mb
| Memory After: 23.91 Mb
| Memory Used: 3.12 kb
| Rows: 1
| Slave: Yes
SELECT COUNT(*)
FROM phpfox_feed
FORCE INDEX (time_stamp)
WHERE user_id = 0 AND feed_reference = 0 AND time_stamp > '0' AND time_stamp <= '31449600'
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_feed | range | time_stamp | time_stamp | 8 | | 1 | Using index condition; Using where |
0.0002661
| Memory Before: 23.91 Mb
| Memory After: 23.92 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT dob_setting
FROM phpfox_user_field
WHERE user_id = 0
LIMIT 1
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | | | | MISSING KEY | | | | Impossible WHERE noticed after reading const tables |
0.0000899
| Memory Before: 23.9 Mb
| Memory After: 23.91 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'layout' AND name = 'block.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition |
0.0002279
| Memory Before: 23.91 Mb
| Memory After: 23.91 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'feed' AND name = 'display.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0000830
| Memory Before: 23.92 Mb
| Memory After: 23.92 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'feed' AND name = 'display.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0003200
| Memory Before: 24.2 Mb
| Memory After: 24.2 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'captcha' AND name = 'form.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0003080
| Memory Before: 24.18 Mb
| Memory After: 24.18 Mb
| Memory Used: 3.16 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'feed' AND name = 'timeline.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0004151
| Memory Before: 24.35 Mb
| Memory After: 24.35 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'feed' AND name = 'content.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0001760
| Memory Before: 24.49 Mb
| Memory After: 24.5 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'feed' AND name = 'comment.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0001991
| Memory Before: 24.59 Mb
| Memory After: 24.6 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'feed' AND name = 'link.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0001321
| Memory Before: 24.68 Mb
| Memory After: 24.68 Mb
| Memory Used: 3.16 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'share' AND name = 'link.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0001838
| Memory Before: 24.64 Mb
| Memory After: 24.64 Mb
| Memory Used: 3.15 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'block' AND module_id = 'like' AND name = 'display.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |
0.0005691
| Memory Before: 24.53 Mb
| Memory After: 24.54 Mb
| Memory Used: 9.27 kb
| Rows: 0
| Slave: Yes
SELECT *
FROM phpfox_ad
WHERE location = "feed|display"
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_ad | ALL | | MISSING KEY | | | 12 | Using where |
0.0001211
| Memory Before: 24.41 Mb
| Memory After: 24.41 Mb
| Memory Used: 3.16 kb
| Rows: 0
| Slave: Yes
SELECT html_data
FROM phpfox_theme_template
WHERE folder = 'tm_base5' AND type_id = 'base5' AND module_id = 'core' AND name = 'block/template-menufooter.html.php'
/* OO Query */
| Id | Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| 1 | SIMPLE | phpfox_theme_template | ref | theme_id,theme_id_2,folder | theme_id | 176 | const,const,const | 1 | Using index condition; Using where |