RE: [jira] Updated: (LUCENE-529) TermInfosReader and other + instance ThreadLocal => transient/odd memory leaks => OutOfMemoryException

2006-03-24 Thread Andy Hind
Entries are only reclaimed after the holding object/class has been garbage collected and you access thread locals on a given thread. Lets say you give your app server 1G to play with. Then you create thread locals like there is no tomorrow. GC has a bit of a sleep and before you know it you do hav

RE: [jira] Updated: (LUCENE-529) TermInfosReader and other + instance ThreadLocal => transient/odd memory leaks => OutOfMemoryException

2006-03-24 Thread Robert Engels
Seems like something else is wrong in your environment, since you will only get 2 ThreadLocals per segment - having 7000 entries in the ThreadLocal of a thread seems like a lot. Even so, with the current finalize() method, the buffer used by the ThreadLocal is reclaimed, since the ThreadLocal value

Move LIMO to the contribs

2006-03-24 Thread Julien Nioche
Hi guys, Would that make sense to move LIMO into the contrib directory of Lucene? It currently lives on SourceForge (and is regularly out of synch with the latest version of Lucene). I have seen that SOLR also has some monitoring functionalities - but had no time to look into the details.

BooleanFilter proposal

2006-03-24 Thread markharw00d
What do folks feel about a BooleanFilter which is the equivalent of BooleanQuery ie a filter which contains other filters, combined with the same "must", "should" or "must not" logic. I know we already have ChainedFilter in the "misc" section of the contrib area but its methods do not echo the

Re: BooleanFilter proposal

2006-03-24 Thread Terry Steichen
+1 markharw00d wrote: What do folks feel about a BooleanFilter which is the equivalent of BooleanQuery ie a filter which contains other filters, combined with the same "must", "should" or "must not" logic. I know we already have ChainedFilter in the "misc" section of the contrib area but it