A very complex search problem.

2009-09-02 Thread rajan chandi
Hi All, We are dealing with a very complex problem of person specific search. We're building a social network where people will post stuff and other users should be able to see the content only from their contacts. e.g. There are 10,000 users in the system and there are only 150 users in my

Re: A very complex search problem.

2009-09-02 Thread GĂ©rard Dupont
Hi, The big OR query should be the easiest way and it may work up to ~1000 users (ie you can specific by default 1024 boolean clause so up to N users in the OR where N = 1024 - (boolean clause in your query)). You can increase this limit of boolean clauses in the configuration but I guess too

RE: A very complex search problem.

2009-09-02 Thread Lie, Birger
-...@lucene.apache.org; Shalin Shekhar Mangar Subject: Re: A very complex search problem. Hi, The big OR query should be the easiest way and it may work up to ~1000 users (ie you can specific by default 1024 boolean clause so up to N users in the OR where N = 1024 - (boolean clause in your query)). You can

Re: A very complex search problem.

2009-09-02 Thread rajan chandi
: Re: A very complex search problem. Hi, The big OR query should be the easiest way and it may work up to ~1000 users (ie you can specific by default 1024 boolean clause so up to N users in the OR where N = 1024 - (boolean clause in your query)). You can increase this limit of boolean

Re: A very complex search problem.

2009-09-02 Thread gwk
Hello Rajan, I might be mistaken, but isn't CouchDB or a similar map/reduce database ideal for situations like this? Regards, gwk rajan chandi wrote: Hi All, We are dealing with a very complex problem of person specific search. We're building a social network where people will post stuff

RE: A very complex search problem.

2009-09-02 Thread Lie, Birger
. Facebook is using HBase (I think) CouchDB is also excellent... -Birger -Original Message- From: gwk [mailto:g...@eyefi.nl] Sent: 2. september 2009 12:34 To: solr-user@lucene.apache.org Subject: Re: A very complex search problem. Hello Rajan, I might be mistaken, but isn't CouchDB

Re: A very complex search problem.

2009-09-02 Thread rajan chandi
Hi Gwk, Thanks for the pointers. The only concern will be the relevance. Lucene has the best relevance capability so far. CouchDB sounds to be interesting though. May be We'll try to find some bench-marks on relevance score of CouchDB. Thanks and Regards Rajan Chandi On Wed, Sep 2, 2009 at

Re: A very complex search problem.

2009-09-02 Thread rajan chandi
Subject: Re: A very complex search problem. Hello Rajan, I might be mistaken, but isn't CouchDB or a similar map/reduce database ideal for situations like this? Regards, gwk rajan chandi wrote: Hi All, We are dealing with a very complex problem of person specific search. We're

Re: A very complex search problem.

2009-09-02 Thread Aakash Dharmadhikari
... -Birger -Original Message- From: gwk [mailto:g...@eyefi.nl] Sent: 2. september 2009 12:34 To: solr-user@lucene.apache.org Subject: Re: A very complex search problem. Hello Rajan, I might be mistaken, but isn't CouchDB or a similar map/reduce database ideal

Re: A very complex search problem.

2009-09-02 Thread rajan chandi
Message- From: gwk [mailto:g...@eyefi.nl] Sent: 2. september 2009 12:34 To: solr-user@lucene.apache.org Subject: Re: A very complex search problem. Hello Rajan, I might be mistaken, but isn't CouchDB or a similar map/reduce database ideal for situations like