WordPress.org

Make WordPress Core

Opened 21 months ago

Last modified 21 months ago

#18836 new enhancement

ORDER BY RAND() is slow

Reported by: scribu Owned by:
Priority: normal Milestone: Awaiting Review
Component: Performance Version:
Severity: minor Keywords:
Cc: sirzooro

Description (last modified by scribu)

WP_Query currently accepts 'orderby' => 'rand' which translates to ORDER BY RAND().

This is very slow when you have many posts, since it effectively calls RAND() for each row.

A faster way would be to call RAND() only once and put it in the LIMIT clause.

The only thing is that we have to make sure that the generated number is smaller than (total number of posts - number of posts to fetch).

So, this would require to do an extra query to calculate the total. It should still be faster than the current method.

If we want to get more than one post, we can get them in any order and then call shuffle() on the resulting array.

Change History (3)

comment:1 scribu21 months ago

Here's a method of doing it all in a single query:

http://explainextended.com/2009/03/01/selecting-random-rows/

Not sure how feasible it would be for WP.

comment:2 sirzooro21 months ago

  • Cc sirzooro added

comment:3 scribu21 months ago

  • Description modified (diff)
Note: See TracTickets for help on using tickets.