Return-Path: X-Original-To: apmail-lucene-solr-user-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 79C4E78FE for ; Mon, 18 Jul 2011 19:45:28 +0000 (UTC) Received: (qmail 61915 invoked by uid 500); 18 Jul 2011 19:45:25 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 61857 invoked by uid 500); 18 Jul 2011 19:45:24 -0000 Mailing-List: contact solr-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-user@lucene.apache.org Delivered-To: mailing list solr-user@lucene.apache.org Received: (qmail 61849 invoked by uid 99); 18 Jul 2011 19:45:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Jul 2011 19:45:24 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of tplimited@gmail.com designates 209.85.212.48 as permitted sender) Received: from [209.85.212.48] (HELO mail-vw0-f48.google.com) (209.85.212.48) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Jul 2011 19:45:18 +0000 Received: by vws7 with SMTP id 7so4219993vws.35 for ; Mon, 18 Jul 2011 12:44:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=2CLFLtx8xfraPk3nXIxG5YljpdEBCVlFhtklTsEs1jw=; b=DupGPZFAUq0QJ4gdCcD6n9awJEcZnQnAw9Dg5DafWmH8GKZ6qhJ6ic1bEIYsN+G5Km fMiIJ5Lj2qvqW/SVQOIk1kH5exqT77EJJWLjjlcEowYdVGgP5YlvwX03zsMcjMKd4wGn r1HVzIkCiitDP+Kj+AAv/kvppEj1YItgGNSt8= MIME-Version: 1.0 Received: by 10.52.91.116 with SMTP id cd20mr6565845vdb.422.1311018297165; Mon, 18 Jul 2011 12:44:57 -0700 (PDT) Received: by 10.52.188.230 with HTTP; Mon, 18 Jul 2011 12:44:57 -0700 (PDT) Date: Mon, 18 Jul 2011 14:44:57 -0500 Message-ID: Subject: Solr search starting with 1 character spin endlessly From: Timothy Tagge To: solr-user@lucene.apache.org Content-Type: text/plain; charset=ISO-8859-1 Solr version: 1.4.1 I'm having some trouble with certain queries run against my Solr index. When a query starts with a single letter followed by a space, followed by another search term, the query runs endlessly and never comes back. An example problem query string... /customer/select/?q=name%3At+j+reynolds&version=2.2&start=0&rows=10&indent=on However, if I switch the order of the search values, putting the longer search term before the single character, I get quick, accurate results.... /customer/select/?q=name%3AReynolds+T+J&version=2.2&start=0&rows=10&indent=on I've defined my name field as text..... Where text is defined as.... Am I making a simple mistake somewhere? Thanks for your help. Tim T.