MySQL Forums
Forum List  »  Performance

Re: tactics to improve ORDER BY and LIMIT (different question)
Posted by: Aftab Khan
Date: March 13, 2009 09:22AM

Also provide
What mysql version you are uing?
mysql> select version();
Also provide us
mysql> show global variabels like 'sort%'

if possible switch to 5.1 and use "List Partitioning Method" i.e. STATUS

CREATE TABLE posts
(....
)
PARTITION BY LIST (STATUS)
(PARTITION statuses VALUES ('Approved', ...);

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: tactics to improve ORDER BY and LIMIT (different question)
1986
March 13, 2009 09:22AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.