Return-Path: Delivered-To: apmail-lucene-solr-dev-archive@locus.apache.org Received: (qmail 86773 invoked from network); 16 Jan 2007 01:57:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Jan 2007 01:57:45 -0000 Received: (qmail 12560 invoked by uid 500); 16 Jan 2007 01:57:39 -0000 Delivered-To: apmail-lucene-solr-dev-archive@lucene.apache.org Received: (qmail 12540 invoked by uid 500); 16 Jan 2007 01:57:39 -0000 Mailing-List: contact solr-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-dev@lucene.apache.org Delivered-To: mailing list solr-dev@lucene.apache.org Received: (qmail 12526 invoked by uid 99); 16 Jan 2007 01:57:39 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Jan 2007 17:57:39 -0800 X-ASF-Spam-Status: No, hits=2.8 required=10.0 tests=HTML_MESSAGE,INFO_TLD X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [208.213.216.147] (HELO nwjdns20.innodata-isogen.com) (208.213.216.147) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Jan 2007 17:57:28 -0800 Received: from NWJSVP10.INNODATA.NET (nwjsvp10.innodata-isogen.com [10.155.1.11]) by nwjdns20.innodata-isogen.com (8.13.5/8.13.5) with ESMTP id l0G1pmpC014001 for ; Mon, 15 Jan 2007 20:51:48 -0500 (EST) Received: from nwje2k20.NEWJERSEY.INNODATA.NET ([10.150.1.51]) by nwje2k20.NEWJERSEY.INNODATA.NET with Microsoft SMTPSVC(6.0.3790.1830); Mon, 15 Jan 2007 20:57:00 -0500 Cc: Received: from dlse2k20.DALLAS.INNODATA.NET ([10.110.1.50]) by nwje2k20.NEWJERSEY.INNODATA.NET with Microsoft SMTPSVC(6.0.3790.1830); Mon, 15 Jan 2007 20:57:00 -0500 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2826 Content-Class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C73911.9B73566D" Content-Transfer-Encoding: 7bit Subject: results while using SolrClient.. Date: Mon, 15 Jan 2007 19:56:57 -0600 Message-ID: <7945C5F2BF745C45A9B8A65A4398071001120779@dlse2k20.DALLAS.INNODATA.NET> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: results while using SolrClient.. thread-index: Acc5EZrlOq+pfmJMRdKiTaBQS0Knsg== Importance: normal Priority: normal From: "Cook, Jeryl" To: X-OriginalArrivalTime: 16 Jan 2007 01:57:00.0093 (UTC) FILETIME=[9C2F6ED0:01C73911] X-imss-version: 2.045 X-imss-result: Passed X-imss-scores: Clean:35.54236 C:2 M:3 S:5 R:5 X-imss-settings: Baseline:1 C:4 M:3 S:3 R:2 (0.0000 0.0000) X-Virus-Checked: Checked by ClamAV on apache.org ------_=_NextPart_001_01C73911.9B73566D Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable When I perform a search from indexed items.. The count name only shows partial count name, however the results show the full name =20 The count Name value, shows partial state " texa ", even though in the index is Texas for a document. And also if I put United States, it shows a count.getName() of "Unit", and one only "state".. it seems to break up if it a white space, or=20 If it believes it is plural.. is it a way to tern this off? =20 QueryResults results =3D client.query( query ); logger.debug( "got: "+results.getNumFound() + " :: time "+results.getQTime() ); =20 for(FieldFacet facet: results.getFacets()){ logger.info( "facet name: [" + facet.getName() + "] value count: [" + facet.getValueCount()+ "]"); =20 if ( facet.getValueCount() !=3D 0){ for(Count count : facet.getValues() ){ logger.info( " count Name: [" + count.getName() + "] , count: [" + count.getCount() + "]"); } } } =20 Jeryl ------_=_NextPart_001_01C73911.9B73566D--