Skip to content

Files

Latest commit

 

History

History
12 lines (7 loc) · 534 Bytes

WordPressVIPMinimum.Performance.OrderByRand.md

File metadata and controls

12 lines (7 loc) · 534 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