Return-Path: Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: (qmail 92646 invoked from network); 27 Apr 2010 21:17:00 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 27 Apr 2010 21:17:00 -0000 Received: (qmail 90976 invoked by uid 500); 27 Apr 2010 21:16:59 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 90920 invoked by uid 500); 27 Apr 2010 21:16:59 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 90913 invoked by uid 99); 27 Apr 2010 21:16:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Apr 2010 21:16:59 +0000 X-ASF-Spam-Status: No, hits=-1356.7 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Apr 2010 21:16:58 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o3RLGbKh022021 for ; Tue, 27 Apr 2010 21:16:38 GMT Message-ID: <15778259.41981272402997650.JavaMail.jira@thor> Date: Tue, 27 Apr 2010 17:16:37 -0400 (EDT) From: "Otis Gospodnetic (JIRA)" To: dev@lucene.apache.org Subject: [jira] Commented: (LUCENE-1190) a lexicon object for merging spellchecker and synonyms from stemming MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LUCENE-1190?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12861546#action_12861546 ] Otis Gospodnetic commented on LUCENE-1190: ------------------------------------------ Just came across this old issue, and still can't easily follow it. But I wonder if this issue has become irrelevant with all the new work on analyzers that Robert Muir & Co. are doing? > a lexicon object for merging spellchecker and synonyms from stemming > -------------------------------------------------------------------- > > Key: LUCENE-1190 > URL: https://issues.apache.org/jira/browse/LUCENE-1190 > Project: Lucene - Java > Issue Type: New Feature > Components: contrib/*, Search > Affects Versions: 2.3 > Reporter: Mathieu Lecarme > Attachments: aphone+lexicon.patch, aphone+lexicon.patch > > > Some Lucene features need a list of referring word. Spellchecking is the basic example, but synonyms is an other use. Other tools can be used smoothlier with a list of words, without disturbing the main index : stemming and other simplification of word (anagram, phonetic ...). > For that, I suggest a Lexicon object, wich contains words (Term + frequency), wich can be built from Lucene Directory, or plain text files. > Classical TokenFilter can be used with Lexicon (LowerCaseFilter and ISOLatin1AccentFilter should be the most useful). > Lexicon uses a Lucene Directory, each Word is a Document, each meta is a Field (word, ngram, phonetic, fields, anagram, size ...). > Above a minimum size, number of differents words used in an index can be considered as stable. So, a standard Lexicon (built from wikipedia by example) can be used. > A similarTokenFilter is provided. > A spellchecker will come soon. > A fuzzySearch implementation, a neutral synonym TokenFilter can be done. > Unused words can be remove on demand (lazy delete?) > Any criticism or suggestions? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org