Erlend,
Thursday, June 06, 2002, 2:53:02 PM, you wrote:

EHS> I'm actually using MySQL 4.0.1-alpha in a production system now. Only using
EHS> MyISAM tables. ( http://www.gnist.no )

EHS> The only problem I have is that sometimes the database crash with some
EHS> fulltext searches... And with only some words (combination of words), not
EHS> all. I have around 1-2 crashes every 24 hour. 
EHS> Queries per second avg: around 35-40

EHS> I'm really looking forward to the 4.0.2 release. I hope we will get some
EHS> more options to tweak and customize the fulltext search/indexing.

There is a lot of bugs fixed in full-test search in 4.0.2:
      http://www.mysql.com/doc/N/e/News-4.0.2.html

EHS> One other thing. I ran a Solid Database earlier, and they had support for
EHS> indexed '%text%' search. Wildecard at start/end of search string. Why
EHS> haven't MySQL support for this? Just wondering... 

MySQL doesn't use indexes in this case, because search word begins
with wildcard. MySQL will use indexes in the following statement:
      SELECT * FROM table WHERE column LIKE "text%";

It will look for all words that >=text and <texu. for more details
how MySQL uses indexes look at:
      http://www.mysql.com/doc/M/y/MySQL_indexes.html

EHS> Erlend Stromsvik




-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Victoria Reznichenko
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
       <___/   www.mysql.com




---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to