Modify how a field value is stored in Lucene

2010-08-02 Thread Fernando Wasylyszyn
Hi all. This is my question. Currently, I'm working in a project where I have Lucene documents with one field that use payloads. For this field, I use org.apache.lucene.analysis.payloads.DelimitedPayloadTokenFilter, so the value for that field is something like: "fieldValue\1.0" where '\' is the

heads up -- index corruption on Solr/Lucene trunk/3.x branch

2010-08-02 Thread Michael McCandless
This issue: https://issues.apache.org/jira/browse/LUCENE-2574 which was committed 3 days ago (Friday Jul 30) can cause index corruption. I just committed a fix for the corruption, but if you've been using Solr/Lucene trunk or 3x branch updated after the first commit on Friday, and you built

Register now for Surge 2010

2010-08-02 Thread Jason Dixon
Registration for Surge Scalability Conference 2010 is open for all attendees! We have an awesome lineup of leaders from across the various communities that support highly scalable architectures, as well as the companies that implement them. Here's a small sampling from our list of speakers: John

Re: Get fields from a Query object

2010-08-02 Thread Erick Erickson
Did you look at Query.extractTerms? I think that'll work for you. Note that the query must be rewritten, and that the set of terms will have duplicate fields. i.e. if you search field1:Erick +field1:James I expect you'll have two terms in the set that are on field1. Best Erick On Mon, Aug 2, 2010

creating tag cloud (with faceted search?) for search result (filter)

2010-08-02 Thread ArminS
Hi guys, I did some extensive research over the last days, also searched the threads in this forum (big compliment to the users helping here!) about creating a tag cloud of the search result(s). But I still couln't find something satisfying me yet... Background: I have lots of user text comment

Re: Get fields from a Query object

2010-08-02 Thread Anuj Shah
My code has been given a query string, which we parse into the Query object and would like to get a list of fields from. I'm assuming there exists a method to do so, as it seems like a useful function. If not should I be parsing the string for fields myself. Anuj On Sun, Aug 1, 2010 at 2:21