MySQL Forums
Forum List  »  Performance

Re: Selects are slow when blob field?
Posted by: Harrison Fisk
Date: November 26, 2004 10:41AM

Hi,

I was referring to the statement you made:

"My example is contrived because in reality all queries need the blob data, so moving the blob to a join table would not bring me any benefits."

I told you how you would split up the tables in order to increase speed for the first query you said, but you said you couldn't do that because you always retrieve blobs. So I told you why always retrieving the blob was going to be slow.

As far as why the first was one was slow, MyISAM always reads the entire row, so it is reading the blob even though it technically doesn't need it. Splitting the tables to avoid this is a fairly standard practice.

Harrison Fisk, Trainer and Consultant
MySQL AB, www.mysql.com

Options: ReplyQuote


Subject
Views
Written By
Posted
5422
November 23, 2004 09:37AM
4027
November 23, 2004 09:51AM
3429
November 23, 2004 11:17AM
3532
November 23, 2004 05:29PM
3549
November 24, 2004 08:20AM
3676
November 24, 2004 05:05PM
3330
November 26, 2004 10:00AM
Re: Selects are slow when blob field?
7778
November 26, 2004 10:41AM


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.