Results 1 to 3 of 3

Thread: FULLTEXT search problem

  1. #1
    Join Date
    Oct 2005
    Posts
    3

    Unhappy FULLTEXT search problem

    Hello frnds,

    I am working on my company's site which is a job portal, there we have an option for searching the resume on the basis of the keywords (like java,j2ee,team lead etc.......)serached in the resume text
    .The resumes are stored as a field in the database.The database we are using is MySQL 4.1.Our databse has >3 lakh records.As the databse has grown in size this serach is performing v poorly . So we desided to use FULLTEXT serach of mysql , previously we were using like operator.But still the speed has not increased much. Why?

    Can anyone help me with this.
    Thanks
    bye

  2. #2
    Join Date
    Feb 2003
    Location
    Tallahassee, Florida USA
    Posts
    43
    Try to index the table(s)
    and not use arrays in you search page
    I had some problems like this and the array was the problem.

  3. #3
    Join Date
    Nov 2005
    Posts
    2
    1. Try optimizing the tables. Use the myisamchk utility.

    2. Using some app (SSH, MySQL Control Center, ...) put the words 'EXPLAIN' in front of the query and it will, just that, explain what order the query is being executed, with what indexes and how many records it is retreiving per table.
    http://dev.mysql.com/doc/refman/4.1/en/explain.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •