Re: About search performance

2006-08-01 Thread zhongyi yuan
My question is about deal with the multi clauses booleanQuery, the num of clauses is giant and induce the performance.So I want some other method to replace this query to improve the performance. Now through filter achieve the goal. Thanks for the suggestions. --

RE: About search performance

2006-07-31 Thread Russell M. Allen
rg Subject: About search performance Hi,How about implement multi-key search use lucene, for example use boolean search exceed 1000 clauses,it will affect the performance greatly. If use filter or custom sorter to select the result, because the result is extremely large in amount,so the perf

Re: About search performance

2006-07-29 Thread karl wettin
On Sat, 2006-07-29 at 09:46 +0800, zhongyi yuan wrote: > Hi,How about implement multi-key search use lucene, for example use > boolean search exceed 1000 clauses,it will affect the performance > greatly. If use filter or custom sorter to select the result, because > the result is extremely large in

About search performance

2006-07-28 Thread zhongyi yuan
Hi,How about implement multi-key search use lucene, for example use boolean search exceed 1000 clauses,it will affect the performance greatly. If use filter or custom sorter to select the result, because the result is extremely large in amount,so the performance is lower. Please give me some advic