Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 362 Bytes

WordPress.VIP.OrderByRand.md

File metadata and controls

11 lines (6 loc) · 362 Bytes

Pattern: Use of orderby => rand

Issue: -

Description

MySQL queries that use ORDER BY RAND() can be pretty challenging and slow on large datasets. An alternate option can be to retrieve 100 posts and pick one at random.

Further Reading