My question is about using fulltext.As I know like queries which begin with % never use index :
SELECT * from customer where name like %username%
Of what I know about fulltext indexes, i'll make the following extrapolations:
Assuming all that is correct, I'll go ahead and make the following statement: The fulltext index is in fact an index, which makes search faster. It is large, and has fewer search posibilities than LIKE would have, but it's way faster.
More info:
http://www.developer.com/db/article.php/3446891
http://en.wikipedia.org/wiki/Full_text_search