How to optimize mysql fulltext union search?

Discussion in 'JavaScript' started by cj333, Apr 21, 2011.

  1. #1
    I am making a mysql fulltext search.

    my database table article1 has ~18000 articles, article2 has ~7000 articles, article3 has ~13000 articles. FIELD cat is a INDEX field

    Now I want to make a union search. there are 5 groups words put into 3 table, match out the results. But the process time is 3.1213495136 seconds. (I add microtime() to see how much time it will cost). Is there any way to optimize mysql fulltext union search? Thanks.


    (SELECT title,content,date FROM article1 WHERE 
    (cat='novel' AND MATCH (title,content) AGAINST ('+Mary +Barnard' IN BOOLEAN MODE)) 
    OR 
    (cat='novel' AND MATCH (title,content) AGAINST ('+Patricia +Beer' IN BOOLEAN MODE)) 
    OR 
    (cat='novel' AND MATCH (title,content) AGAINST ('+Aphra +Behn' IN BOOLEAN MODE)) 
    OR 
    (cat='novel' AND MATCH (title,content) AGAINST ('+Judy +Blume' IN BOOLEAN MODE)) 
    OR 
    (cat='novel' AND MATCH (title,content) AGAINST ('+Elizabeth +Bowen' IN BOOLEAN MODE)))
    UNION 
    (SELECT title,content,date FROM article2 WHERE 
    (MATCH (title,content) AGAINST ('+Mary +Barnard' IN BOOLEAN MODE)) 
    OR 
    (MATCH (title,content) AGAINST ('+Patricia +Beer' IN BOOLEAN MODE)) 
    OR 
    (MATCH (title,content) AGAINST ('+Aphra +Behn' IN BOOLEAN MODE)) 
    OR 
    (MATCH (title,content) AGAINST ('+Judy +Blume' IN BOOLEAN MODE)) 
    OR 
    (MATCH (title,content)AGAINST ('+Elizabeth +Bowen' IN BOOLEAN MODE)))
    UNION 
    (SELECT title,content,date FROM article3 WHERE 
    (MATCH (title,content) AGAINST ('+Mary +Barnard' IN BOOLEAN MODE)) 
    OR 
    (MATCH (title,content) AGAINST ('+Patricia +Beer' IN BOOLEAN MODE)) 
    OR 
    (MATCH (title,content) AGAINST ('+Aphra +Behn' IN BOOLEAN MODE)) 
    OR 
    (MATCH (title,content) AGAINST ('+Judy +Blume' IN BOOLEAN MODE)) 
    OR 
    (MATCH (title,content)AGAINST ('+Elizabeth +Bowen' IN BOOLEAN MODE)))
    Order By date DESC LIMIT 10
    HTML:
     
    cj333, Apr 21, 2011 IP
  2. cj333

    cj333 Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    sorry, post in a wrong position. can admin help me move to php? Thanks.
     
    cj333, Apr 21, 2011 IP