[jira] Commented: (LUCENE-2324) Per thread DocumentsWriters that write their own private segments

2010-04-05 Thread Michael Busch (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2324?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853751#action_12853751 ] Michael Busch commented on LUCENE-2324: --- Sorry, Jason, I got sidetracked with LUCENE

[jira] Updated: (LUCENE-2265) improve automaton performance by running on byte[]

2010-04-05 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2265: Attachment: LUCENE-2265.patch ok I think i made some serious progress here, but i did find a bug i

[jira] Updated: (LUCENE-2265) improve automaton performance by running on byte[]

2010-04-05 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2265: Attachment: LUCENE-2265.patch this is mike's patch + my patch + quick hack attempt... most but not

[jira] Commented: (LUCENE-2368) stopword files should be versioned; acessor for default(s) should take a Version property

2010-04-05 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853691#action_12853691 ] Hoss Man commented on LUCENE-2368: -- bq. I wonder if we should just break now (by renaming

[jira] Commented: (LUCENE-2368) stopword files should be versioned; acessor for default(s) should take a Version property

2010-04-05 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853688#action_12853688 ] Hoss Man commented on LUCENE-2368: -- This is something i brought up with Robert on IRC a f

[jira] Commented: (LUCENE-2368) stopword files should be versioned; acessor for default(s) should take a Version property

2010-04-05 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853686#action_12853686 ] Robert Muir commented on LUCENE-2368: - Yes, we should just go ahead and do this now to

[jira] Created: (LUCENE-2368) stopword files should be versioned; acessor for default(s) should take a Version property

2010-04-05 Thread Hoss Man (JIRA)
stopword files should be versioned; acessor for default(s) should take a Version property - Key: LUCENE-2368 URL: https://issues.apache.org/jira/browse/LUCENE-2368

Re: Term space continuity

2010-04-05 Thread Earwin Burrfoot
Wow! Cool. On Tue, Apr 6, 2010 at 03:51, Michael McCandless wrote: > The flex API isolates fields, ie you get a TermsEnum for a given field > and it enums only the term's text (as a BytesRef). > > Mike > > On Mon, Apr 5, 2010 at 7:22 PM, Earwin Burrfoot wrote: >> A random thought from some of th

Re: Term space continuity

2010-04-05 Thread Michael McCandless
The flex API isolates fields, ie you get a TermsEnum for a given field and it enums only the term's text (as a BytesRef). Mike On Mon, Apr 5, 2010 at 7:22 PM, Earwin Burrfoot wrote: > A random thought from some of the earlier discussions. > > Had anybody used the fact that Lucene Term space is c

[jira] Commented: (LUCENE-2324) Per thread DocumentsWriters that write their own private segments

2010-04-05 Thread Jason Rutherglen (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2324?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853594#action_12853594 ] Jason Rutherglen commented on LUCENE-2324: -- Michael B, I was going to wait for y

Term space continuity

2010-04-05 Thread Earwin Burrfoot
A random thought from some of the earlier discussions. Had anybody used the fact that Lucene Term space is continuous (single per-index/segment space instead of separate per-field spaces) at least once? I only see code around that copes with this somehow, like checking "term.field() == field" just

[jira] Commented: (LUCENE-2335) optimization: when sorting by field, if index has one segment and field values are not needed, do not load String[] into field cache

2010-04-05 Thread Toke Eskildsen (JIRA)
ious, a modified Lucene-JAR can be downloaded at http://github.com/tokee/lucene/downloads and tested with {code} java -cp lucene-core-3.1-dev-LUCENE-2335-20100405.jar org.apache.lucene.index.ExposedPOC expose {code} this will present the user with a simple shell where searches can be performe

[jira] Commented: (LUCENE-2361) OutOfMemoryException while Indexing

2010-04-05 Thread Shivender Devarakonda (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2361?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853562#action_12853562 ] Shivender Devarakonda commented on LUCENE-2361: --- I saw the following infostr

[jira] Updated: (LUCENE-2265) improve automaton performance by running on byte[]

2010-04-05 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless updated LUCENE-2265: --- Attachment: LUCENE-2265.patch Patch w/ first cut at method to cutover whole UTF32 DF

[jira] Updated: (LUCENE-2265) improve automaton performance by running on byte[]

2010-04-05 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2265: Attachment: LUCENE-2265_utf32.patch attached is a totally scary patch to convert the entire automa

[jira] Commented: (LUCENE-2329) Use parallel arrays instead of PostingList objects

2010-04-05 Thread Michael Busch (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2329?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853509#action_12853509 ] Michael Busch commented on LUCENE-2329: --- We could move the if (postingsArray == null

[jira] Updated: (LUCENE-2265) improve automaton performance by running on byte[]

2010-04-05 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless updated LUCENE-2265: --- Attachment: LUCENE-2265.patch Attached patch for first cut at APIs to convert a UTF3

[jira] Resolved: (LUCENE-2365) Finding Newest Segment In Empty Index

2010-04-05 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2365?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless resolved LUCENE-2365. Resolution: Fixed Fix Version/s: (was: 3.0.1) 3.1 Th

[jira] Updated: (LUCENE-2329) Use parallel arrays instead of PostingList objects

2010-04-05 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2329?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless updated LUCENE-2329: --- Attachment: LUCENE-2329.patch > Use parallel arrays instead of PostingList objects >

[jira] Reopened: (LUCENE-2329) Use parallel arrays instead of PostingList objects

2010-04-05 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2329?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless reopened LUCENE-2329: Reopening -- this fixed causes an intermittent deadlock in TestStressIndexing2. It's

[jira] Commented: (LUCENE-2365) Finding Newest Segment In Empty Index

2010-04-05 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2365?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853497#action_12853497 ] Michael McCandless commented on LUCENE-2365: Thanks, patch looks good; I'll co

[jira] Assigned: (LUCENE-2365) Finding Newest Segment In Empty Index

2010-04-05 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2365?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless reassigned LUCENE-2365: -- Assignee: Michael McCandless > Finding Newest Segment In Empty Index > ---

[jira] Commented: (LUCENE-1921) Absurdly large radius (miles) search fails to include entire earth

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1921?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853430#action_12853430 ] Nicolas Helleringer commented on LUCENE-1921: - Should be fixed by the patch LU

[jira] Commented: (LUCENE-1895) Point2D defines equals by comparing double types with ==

2010-04-05 Thread Chris Male (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1895?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853408#action_12853408 ] Chris Male commented on LUCENE-1895: As suggested, its best to use an epsilon when com

[jira] Reopened: (LUCENE-2366) LLRect.createBox returned box does not contains all points in (center,distance) disc

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nicolas Helleringer reopened LUCENE-2366: - > LLRect.createBox returned box does not contains all points in > (center,distance)

[jira] Resolved: (LUCENE-2366) LLRect.createBox returned box does not contains all points in (center,distance) disc

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nicolas Helleringer resolved LUCENE-2366. - Resolution: Fixed Lucene Fields: [Patch Available] (was: [New]) > LLRect

[jira] Updated: (LUCENE-2366) LLRect.createBox returned box does not contains all points in (center,distance) disc

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nicolas Helleringer updated LUCENE-2366: Attachment: LUCENE-2366.patch Ok found : was due to a lack of normalisation of Flo

[jira] Assigned: (LUCENE-1921) Absurdly large radius (miles) search fails to include entire earth

2010-04-05 Thread Chris Male (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1921?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Male reassigned LUCENE-1921: -- Assignee: Chris Male > Absurdly large radius (miles) search fails to include entire earth > --

[jira] Commented: (LUCENE-1895) Point2D defines equals by comparing double types with ==

2010-04-05 Thread Chris Male (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1895?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853404#action_12853404 ] Chris Male commented on LUCENE-1895: {quote} My generic worry is that you can come to

[jira] Commented: (LUCENE-1895) Point2D defines equals by comparing double types with ==

2010-04-05 Thread Mark Miller (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1895?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853402#action_12853402 ] Mark Miller commented on LUCENE-1895: - I put this up not knowing really anything about

[jira] Commented: (LUCENE-1895) Point2D defines equals by comparing double types with ==

2010-04-05 Thread Chris Male (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1895?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853400#action_12853400 ] Chris Male commented on LUCENE-1895: Mark, Its been over 6 months I know, but do you

[jira] Assigned: (LUCENE-1895) Point2D defines equals by comparing double types with ==

2010-04-05 Thread Chris Male (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Male reassigned LUCENE-1895: -- Assignee: Chris Male > Point2D defines equals by comparing double types with == >

[jira] Commented: (LUCENE-1930) Scale moderator not in line with sinusoidal projector

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1930?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853399#action_12853399 ] Nicolas Helleringer commented on LUCENE-1930: - No it is not. I ll make a upda

[jira] Assigned: (LUCENE-1777) Error on distance query where miles < 1.0

2010-04-05 Thread Chris Male (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1777?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Male reassigned LUCENE-1777: -- Assignee: Chris Male > Error on distance query where miles < 1.0 > ---

[jira] Commented: (LUCENE-1777) Error on distance query where miles < 1.0

2010-04-05 Thread Chris Male (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1777?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853398#action_12853398 ] Chris Male commented on LUCENE-1777: Nicolas, Can you just confirm this was fixed in

[jira] Assigned: (LUCENE-1930) Scale moderator not in line with sinusoidal projector

2010-04-05 Thread Chris Male (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1930?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Male reassigned LUCENE-1930: -- Assignee: Chris Male > Scale moderator not in line with sinusoidal projector > ---

[jira] Commented: (LUCENE-1930) Scale moderator not in line with sinusoidal projector

2010-04-05 Thread Chris Male (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1930?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853395#action_12853395 ] Chris Male commented on LUCENE-1930: Nicolas, Is this patch contained in one of your

[jira] Commented: (LUCENE-2367) CartesianPolyFilterBuilder has problems around the poles

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2367?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853392#action_12853392 ] Nicolas Helleringer commented on LUCENE-2367: - Should be solved by the patch I

[jira] Updated: (LUCENE-2366) LLRect.createBox returned box does not contains all points in (center,distance) disc

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nicolas Helleringer updated LUCENE-2366: Attachment: (was: LUCENE-2359.patch) > LLRect.createBox returned box does not

[jira] Updated: (LUCENE-2366) LLRect.createBox returned box does not contains all points in (center,distance) disc

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nicolas Helleringer updated LUCENE-2366: Attachment: LUCENE-2366.patch This patch solves LUCENE-2366 but create a regressio

[jira] Created: (LUCENE-2367) CartesianPolyFilterBuilder has problems around the poles

2010-04-05 Thread Grant Ingersoll (JIRA)
CartesianPolyFilterBuilder has problems around the poles Key: LUCENE-2367 URL: https://issues.apache.org/jira/browse/LUCENE-2367 Project: Lucene - Java Issue Type: Bug Repo

[jira] Commented: (LUCENE-2366) LLRect.createBox returned box does not contains all points in (center,distance) disc

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2366?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853379#action_12853379 ] Nicolas Helleringer commented on LUCENE-2366: - I will work on this and have a

[jira] Updated: (LUCENE-2366) LLRect.createBox returned box does not contains all points in (center,distance) disc

2010-04-05 Thread Nicolas Helleringer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nicolas Helleringer updated LUCENE-2366: Attachment: LUCENE-2359.patch Test case for LLRect.createBox > LLRect.createBox r

[jira] Created: (LUCENE-2366) LLRect.createBox returned box does not contains all points in (center,distance) disc

2010-04-05 Thread Nicolas Helleringer (JIRA)
LLRect.createBox returned box does not contains all points in (center,distance) disc Key: LUCENE-2366 URL: https://issues.apache.org/jira/browse/LUCENE-2366 Project:

[jira] Updated: (LUCENE-2265) improve automaton performance by running on byte[]

2010-04-05 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2265: Attachment: LUCENE-2265_pare.patch as i looked at this, i noticed some unused functionality (numer

[jira] Commented: (LUCENE-2364) Add support for terms in BytesRef format to Term, TermQuery, TermRangeQuery & Co.

2010-04-05 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2364?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12853336#action_12853336 ] Uwe Schindler commented on LUCENE-2364: --- This would also make MTQ's rewrite mode int

[jira] Resolved: (LUCENE-2354) Convert NumericUtils and NumericTokenStream to use BytesRef instead of Strings/char[]

2010-04-05 Thread Uwe Schindler (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2354?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Uwe Schindler resolved LUCENE-2354. --- Resolution: Fixed Lucene Fields: [New, Patch Available] (was: [New]) Committed revis