MySQL Forums
Forum List  »  General

Re: Keyword Indexing Like Google, Ebay etc.
Posted by: Margaret MacDonald
Date: February 18, 2005 01:25PM

I can't offer much specific help, but from your description of the problem it sounds as though you want to do more than simple string-matching. If that is so, then 95% of your time will be spent pre-processing the user's input to extract meaning from it. I definitely would not try to do that using sql. Pre-processing is a job for a general-purpose language, not a database-lookup one.

If you're going to have to process English-language input, there are various places that you can find pseudo-code for the syntax decision tree. One of them is Terry Winograd's description of his 1971 virtual-robot program 'Shrdlu', but there are probably more recent ones that might actually be better.

Options: ReplyQuote


Subject
Written By
Posted
Re: Keyword Indexing Like Google, Ebay etc.
February 18, 2005 01:25PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.