Return-Path: Delivered-To: apmail-lucene-java-user-archive@www.apache.org Received: (qmail 60504 invoked from network); 12 Dec 2008 15:35:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Dec 2008 15:35:07 -0000 Received: (qmail 54285 invoked by uid 500); 12 Dec 2008 15:35:10 -0000 Delivered-To: apmail-lucene-java-user-archive@lucene.apache.org Received: (qmail 54255 invoked by uid 500); 12 Dec 2008 15:35:10 -0000 Mailing-List: contact java-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-user@lucene.apache.org Delivered-To: mailing list java-user@lucene.apache.org Received: (qmail 54243 invoked by uid 99); 12 Dec 2008 15:35:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Dec 2008 07:35:10 -0800 X-ASF-Spam-Status: No, hits=2.4 required=10.0 tests=HTML_MESSAGE,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of john.wang@gmail.com designates 64.233.170.184 as permitted sender) Received: from [64.233.170.184] (HELO rn-out-0910.google.com) (64.233.170.184) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Dec 2008 15:34:48 +0000 Received: by rn-out-0910.google.com with SMTP id j71so1410922rne.4 for ; Fri, 12 Dec 2008 07:34:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=0ALZsFKabjrK0+E2tsgNRUknLWcga3E6WMm3Wqicuqk=; b=Te8uCfbwnqL+iHlkGUogOM5oJBFKIwLERDbcoLMUS3pav9Is0p2TuoFxYdKxUD5YGd n+QQhxouwtYRcdPuh7J8PFGkKtsvNgE0bJ+ac/VBGz3HVPlnH0+DAgH4npamXgdYGITi rMhIb9MS03wNd8LPVUbFN/ppmjpTNEGfMbYwQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=TTJ6cUe1yi0J7hJXEWHj4nGNKt3HV4xLHI1+uChWYaVJy2l+WDHQtnxvyMY6/t65lH uq0hXfYxgPvuMEma2qopQv9lZuUzl/5i6f6bggdqlpjmxRuUbYwBSG2D+OIeJWGfptgT JdZTA9tN3bKz0C7qUmOdM5WXyfq6oipCz2QOs= Received: by 10.90.28.12 with SMTP id b12mr910931agb.9.1229096067718; Fri, 12 Dec 2008 07:34:27 -0800 (PST) Received: by 10.90.25.16 with HTTP; Fri, 12 Dec 2008 07:34:27 -0800 (PST) Message-ID: <8837fb770812120734r3fe7525chd62959ae67b018da@mail.gmail.com> Date: Fri, 12 Dec 2008 07:34:27 -0800 From: "John Wang" To: java-user@lucene.apache.org Subject: Re: Taxonomy in Lucene In-Reply-To: <20974217.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_7637_27546802.1229096067712" References: <7C7C72D1EFE973489F3AF325C7C1BABC01BB7ADB@BOMEX002.corp.capgemini.com> <20937717.post@talk.nabble.com> <5e76f3840812101055q676fbc0ciee37bff35fe4dd94@mail.gmail.com> <20952134.post@talk.nabble.com> <8837fb770812110920n7519423ex4bf5d89da9950417@mail.gmail.com> <20974217.post@talk.nabble.com> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_7637_27546802.1229096067712 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline wiki:http://bobo-browse.wiki.sourceforge.net/ this describes the upcoming 2.0 release, which is in the ill-named branch: BR_DEV_1_5_0 We are still doing some development work on that, feel free to check out the branch and we will be doing a release shortly. some features we aimed for 2.0 and also reasons for the api changes: 1) support for selection expansion: The ability to select a value in a field, and allow the sibling facets to come back, e.g. intersect with other fields and keep the current field not intersect with selected value. This is rather tricky to be fast, e.g. doing 2 searches. 2) allow the framework, ability to handle derived data, e.g. build facets from data not necc. on index. Some examples, in linkedin's case, being able to facet on different distances of the social graph, etc. 3) Being able to handle multi valued facets, e.g. 1 docid -> into multiple values. 4) being able to do 1) on range facets. etc.. -John On Fri, Dec 12, 2008 at 3:52 AM, Karsten F. wrote: > > Hi John, > > I will take a look in the bobo-browse source code at week end. > > Do you now the xtf implementation of faceted browsing: > starting point is > org.cdlib.xtf.textEngine.facet.GroupCounts#addDoc > ? > (It works with millions of facet values on millions of hits) > > What is the starting point in browseengine? > > How is the connection between solr and browseengine ? > > Thanks for mention browseengine. I really like the car demo! > > Best regards > Karsten > > > John Wang wrote: > > > > We are doing lotsa internal changes for performance. Also upgrading the > > api > > to support for features. So my suggestion is to wait for 2.0. (should > > release this this month, at the latest mid jan) We can take this offline > > if > > you want to have a deeper discussion on browse engine. > > > > -- > View this message in context: > http://www.nabble.com/Taxonomy-in-Lucene-tp20929487p20974217.html > Sent from the Lucene - Java Users mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org > For additional commands, e-mail: java-user-help@lucene.apache.org > > ------=_Part_7637_27546802.1229096067712--