vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   select from table "user" query slow (https://vborg.vbsupport.ru/showthread.php?t=263466)

entertain 05-11-2011 11:39 AM

select from table "user" query slow
 
I wanted to optimize some queries in iTrader and found a problem when loading the latest traders in combination with a huge user table.

A query looks like that:
Code:

                $itrader_shame_get = $vbulletin->db->query_read_slave("
                        SELECT itrader_total, itrader_pcnt, username, userid, joindate
                        FROM " . TABLE_PREFIX . "user
                        WHERE itrader_total < 0
                        ORDER BY itrader_total ASC
                        LIMIT $mainpagelimit
                ");

When you have a big user table, the query needs a few seconds to finish.

Do you have any idea how this could be enhanced?

kh99 05-11-2011 01:41 PM

I'm not a mysql expert by any means, but I think you could speed up that query by adding an index on itrader_total to the user table. What I don't know is what effect maintaining that additional index might have on other queries done to the user table (because of course changes to itrader_total need to modify the index).

entertain 05-11-2011 04:54 PM

That really helped to reduce the time of my page loads from 5 seconds to 0.1 second - thank you very much! :)

Boofo 05-11-2011 05:15 PM

From what I have been reading, indexes help "find the rows matching a WHERE clause quickly."


All times are GMT. The time now is 07:03 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00994 seconds
  • Memory Usage 1,710KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete