Re: complex search

2005-10-31 Thread Volodymyr Bychkoviak
thanks for idea... Chris Hostetter wrote: : I want to implement search which in SQL equivalent looks like : select itemId, min(price) from : where : groupBy itemId : Is it possible to achieve? Not easily. The most straightforward approach I can think of is to write your own HitColl

Re: complex search

2005-10-31 Thread Chris Hostetter
: I want to implement search which in SQL equivalent looks like : select itemId, min(price) from : where : groupBy itemId : Is it possible to achieve? Not easily. The most straightforward approach I can think of is to write your own HitCollector that builds up a Hash of itemId => pri

complex search

2005-10-31 Thread Volodymyr Bychkoviak
hi all. I have indexed table from database into index and it looks like: itemId is not unique. I want to implement search which in SQL equivalent looks like select itemId, min(price) from where groupBy itemId Is it possible to achieve? -- regards, Volodymyr Bychkoviak --