Re: IndexReader method semantics

2007-04-24 Thread Daniel Noll
Chris Hostetter wrote: : Basically I'm thinking of writing a different kind of IndexReader which : uses a database to return fake terms for things like tags. The idea : would be that it can be slotted in alongside a real index via : ParallelReader in order to provide the fast-changing part. So

Re: IndexReader method semantics

2007-04-23 Thread Chris Hostetter
: Basically I'm thinking of writing a different kind of IndexReader which : uses a database to return fake terms for things like tags. The idea : would be that it can be slotted in alongside a real index via : ParallelReader in order to provide the fast-changing part. So it would : be possible to

Re: IndexReader method semantics

2007-04-22 Thread Daniel Noll
Chris Hostetter wrote: : I'm considering making a kind of IndexReader where each time terms() is : called it might return a different sequence even though the reader : hasn't been reopened. okay *this* got my attention ... what are you working on? Basically I'm thinking of writing a different

Re: IndexReader method semantics

2007-04-22 Thread Chris Hostetter
: I'm considering making a kind of IndexReader where each time terms() is : called it might return a different sequence even though the reader : hasn't been reopened. okay *this* got my attention ... what are you working on? : Would that kind of thing conceivably cause problems anywhere else in

IndexReader method semantics

2007-04-19 Thread Daniel Noll
Hi all. I'm considering making a kind of IndexReader where each time terms() is called it might return a different sequence even though the reader hasn't been reopened. Would that kind of thing conceivably cause problems anywhere else in the framework? Which is to ask, do other parts of the