Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 872E89E88 for ; Mon, 6 Feb 2012 02:30:25 +0000 (UTC) Received: (qmail 84834 invoked by uid 500); 6 Feb 2012 02:30:23 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 84714 invoked by uid 500); 6 Feb 2012 02:30:22 -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 84702 invoked by uid 99); 6 Feb 2012 02:30:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Feb 2012 02:30:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Feb 2012 02:30:20 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 4A4E11A5443 for ; Mon, 6 Feb 2012 02:29:59 +0000 (UTC) Date: Mon, 6 Feb 2012 02:29:59 +0000 (UTC) From: "Mike (Created) (JIRA)" To: dev@lucene.apache.org Message-ID: <1249409944.611.1328495399305.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Created] (SOLR-3099) Add query operator, index structure, and analyzer for "exact match" searching MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Add query operator, index structure, and analyzer for "exact match" searching ----------------------------------------------------------------------------- Key: SOLR-3099 URL: https://issues.apache.org/jira/browse/SOLR-3099 Project: Solr Issue Type: New Feature Components: Schema and Analysis Reporter: Mike A project I'm working on requires *exact match* searching with stemming turned off. The users are accostomed to Sphinx search, and thus expect a query like [ =runs ] to return only documents that contain the exact term, "runs", and not the stemmed word "run". In SOLR-2866, there is similar work, but I believe it is different because it uses a huge-synonym file rather than storing the original terms directly in the index. What I'd like instead is two things: 1. An analyzer that says, "store the original form of all words in the index along with the stemmed variations." If necessary, it's fine if this is simply an unstemmed field, but that seems cumbersome schema-wise and performance-wise. 2. An operator in edismax that allows users to query the exact form of the word. Sphinx uses the equals sign (=), and that makes sense logically to me. This issue is part of a meta issue, SOLR-3028, that is requesting two other operators in edismax (quorum search and word order). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org