Re: Running out of memory while doing a search

2007-03-26 Thread Santa Clause
, 2) spanNear([FIELD1:bfc,FIELD1:51], 2, true)) This works +(+spanFirst(FIELD1:bfc, 2) spanNear([FIELD1:bfc,FIELD1:51], 2, true)) +(+YNFIELD:y) This runs out of memory Santa Clause <[EMAIL PROTECTED]> wrote: Hello All, I am having an issue with running out of memory

Re: Speeding up looping over Hits

2007-03-22 Thread Santa Clause
Another thing you may want to look at is the newer version 2.1.0 and getFieldable. I think that will lazy load the data, that way you are only reading the parts of the document that you need at that moment rather than the whole thing. Someone please correct me if I am wrong or point to what

Search Question

2007-03-20 Thread Santa Clause
Hello all, I have a how-to question. I have a field with these tokens in it (a b c f b g a) and I am searching on it with these tokens (a f e g a). So far this is easy I just set up a BooleanQuery with a bunch of optional TermQueries and get hits on (a f g a) but not (e) which is close to what