Re: need white papers on performace tuning of full text indexing

2006-02-23 Thread sheeri kritzer
A simple search on google for mysql fulltext indexing provided many links, including: http://jeremy.zawodny.com/blog/archives/000576.html http://epsilondelta.wordpress.com/2006/02/08/dissecting-mysql-fulltext-indexing/ (overviews of how it works) and http://dev.mysql.com/doc/refman/5.0/en/full

need white papers on performace tuning of full text indexing

2006-02-22 Thread Anand Sachdev
anyone know where i can get these, will highly appreciate, this is a feature of mysql 5.0 and my platform is linux.

Re: MySQL 4.0, FULL-TEXT Indexing and Search Arabic Data, Unicode

2005-11-27 Thread AmirBehzad Eslami
Mohsen wrote: > But himself solved his problem. > with : mysql_query("SET NAMES utf8"); > Even 4.0.x Wrong. I decided to prepare two different versions for my software: - A MySQL 4.0-friendly version using Romanizing method (Hats off to you, Ehsan) - A MySQL 4.1-compatible

Re: MySQL 4.0, FULL-TEXT Indexing and Search Arabic Data, Unicode

2005-11-25 Thread Alec . Cawley
AmirBehzad Eslami <[EMAIL PROTECTED]> wrote on 24/11/2005 18:36:25: > On 24/11/2005, Alec worte: > > > I think this is your problem: MySQL does not properly support Unicode > > until version 4.1. I am successfully using FullText with MySQL > 4.1 to sort > > UTF-8 encoded Japanese text.

Re: MySQL 4.0, FULL-TEXT Indexing and Search Arabic Data, Unicode

2005-11-24 Thread AmirBehzad Eslami
On 24/11/2005, Alec worte: > I think this is your problem: MySQL does not properly support Unicode > until version 4.1. I am successfully using FullText with MySQL 4.1 to sort > UTF-8 encoded Japanese text. I see no reason why it should not work for > Arabic - if you upgrade. Dea

Re: MySQL 4.0, FULL-TEXT Indexing and Search Arabic Data, Unicode

2005-11-24 Thread Alec . Cawley
of data, encoded with Unicode(UTF-8). > > > The big deal is to ** reduce the response time ** to end-users. > > My first solution is to create an Index and use the "FULL-TEXT > Searching" method. > > Luckily, MySQL's provides FULL-TEXT Indexing sup

MySQL 4.0, FULL-TEXT Indexing and Search Arabic Data, Unicode

2005-11-24 Thread AmirBehzad Eslami
-users. My first solution is to create an Index and use the "FULL-TEXT Searching" method. Luckily, MySQL's provides FULL-TEXT Indexing support in MyISAM tables. But unfortunately, it doesn't support multi-byte charsets (e.g. Unicode). [1] Technically, MySQL creates

RE: Limitation of Full-Text indexing in MyISAM table?

2001-12-10 Thread Al Caponi
> > > > > > > On Dec 10, Al Caponi wrote: > > > > > > > > > > But I keep getting the following error when I try to delete > > some row: > > > > > > > > > > java.sql.SQLException: General error: Incorrect key file > for table: > > > > > 'mytable'. Try to repair it > > > > > > > > > > So far, I've f

RE: Limitation of Full-Text indexing in MyISAM table?

2001-12-10 Thread Al Caponi
Hi, > > > > > > Hi! > > > > > > On Dec 10, Al Caponi wrote: > > > > > > > > But I keep getting the following error when I try to delete > some row: > > > > > > > > java.sql.SQLException: General error: Incorrect key file for table: > > > > 'mytable'. Try to repair it > > > > > > > > So far, I've

Re: Limitation of Full-Text indexing in MyISAM table?

2001-12-10 Thread Sergei Golubchik
ing List > > Subject: Re: Limitation of Full-Text indexing in MyISAM table? > > > > > > Hi! > > > > On Dec 10, Al Caponi wrote: > > > > > > But I keep getting the following error when I try to delete some row: > > > > > > java.

RE: Limitation of Full-Text indexing in MyISAM table?

2001-12-10 Thread Al Caponi
Hi Sergei! Thanks for the reply! That was fast :) > -Original Message- > From: Sergei Golubchik [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 10, 2001 10:48 PM > To: Al Caponi > Cc: MySQL Mailing List > Subject: Re: Limitation of Full-Text indexing in MyISAM table

Re: Limitation of Full-Text indexing in MyISAM table?

2001-12-10 Thread Sergei Golubchik
Hi! On Dec 10, Al Caponi wrote: > Hi all, > Is there any limitation in creating full-text indexes on MyISAM tables? > Currently, I have a table like this: > CREATE TABLE IF NOT EXISTS mytable ( > UId BIGINT(20) NOT NULL AUTO_INCREMENT, > Title VARCHAR(255) NOT NULL, > Field1 TEX

Limitation of Full-Text indexing in MyISAM table?

2001-12-10 Thread Al Caponi
Hi all, Is there any limitation in creating full-text indexes on MyISAM tables? Currently, I have a table like this: CREATE TABLE IF NOT EXISTS mytable ( UId BIGINT(20) NOT NULL AUTO_INCREMENT, Title VARCHAR(255) NOT NULL, Field1 TEXT, Field2 TEXT, Field3 VA

Full text indexing

2001-08-02 Thread Simon Jones
Hi all, I'm new to mysql and I am interested in using the fulltext search feature. Is it possible to match a search term with two indexed columns from different tables, or do I have to use separate queries? Any help would be much appreciated. Simon ___

Using mifluz for full text indexing

2001-04-22 Thread Philip Mak
Has anyone here used mifluz for full text indexing of TEXT columns in MySQL? I have a table with a "num" (MEDIUMINT, unique row identifier) and "message" (MEDIUMTEXT, the column to be indexed) column. I'd like to be able to do full text searches on the "message&