2007/3/17, Chris Hostetter <[EMAIL PROTECTED]>:
if your indexing while searching is causing problems, one way to reduce
the impact is to index on a master instance and then use the replication
scripts to sync it up with a slave instance (where all of your searches
happen)
I think it have pro
2007/3/17, Chris Hostetter <[EMAIL PROTECTED]>:
: Can people from cnet tell how to use solr in CNET.COM ?
I really don't understand your question, here's some links to CNET.com
that use Solr...
http://www.cnet.com/4244-5_1-0.html?query=ipod
http://search.news.com/search?q=apple
http://reviews
How do i force SOLR to score documents that contain ALL terms 1st
before results that contain some of the terms?
The problem is that i don't want to use an AND (since i am also
interested in the OR results) but i do want to score documents that
contain all terms higher.
Please advise,
Thanks
: I think it have problem that we use win2003 and i remember replication
The scripts thta come with Solr don't work on windows becaues they rely on
hardlinks to efficinelty copy only things that have changed -- but the
principle of indexing on one server, creating "snapshots" (which could be
true
: I just wana know CNET.com's index and search architecture if it can be
: public.
: Many people who use solr or wanna use,,they all wanna know and learn.
I'm not sure what to tell you: Solr *is* our search arch. We have a dozen
or so Solr, indexes, all of them use hte master/slave model -- but
: How do i force SOLR to score documents that contain ALL terms 1st
: before results that contain some of the terms?
generally speaking this is hte result you will usually on random data ...
under the covers Lucene uses TF/IDF based weighting of terms, with a coord
factor that penalizes queries t
there's nothing like that in SOlr right now, but you could write a Custom
RequestHandler to do it.
in theory you could even write a request handler thta just successivly
called another request handler by name (which could be a param) altering
the request params each time based on it's input, and
I assumed the tf/idf would behave like this but it's behaving VERY
differently/wrong so i wonder maybe something is wrong with my
indexing strategy ?
I think for a quicker solution (ok, hack :) ) I'll run two different
queries (AND, OR) and merge them.
Does SOLR support some kind of merging i can
2007/3/19, Chris Hostetter <[EMAIL PROTECTED]>:
: I think it have problem that we use win2003 and i remember replication
The scripts thta come with Solr don't work on windows becaues they rely on
hardlinks to efficinelty copy only things that have changed -- but the
principle of indexing on on
2007/3/19, Chris Hostetter <[EMAIL PROTECTED]>:
: I just wana know CNET.com's index and search architecture if it can be
: public.
: Many people who use solr or wanna use,,they all wanna know and learn.
I'm not sure what to tell you: Solr *is* our search arch.
Below information that i wann
How about returning at most 1 result of each group in a single query?
For example, a website may have a lot of pages. When google returns
search results, it only shows at most one result for each website. I have
a similar situation. Is there an easy way for this kind of problem?
--
View this mes
Hey Chris,
wouldn't doing something like this in the query :
(field1:tag1 tag2) OR (field1:tag1 AND tag2)
Achieve similar affect ?
The documents that have all the tags (tag1 and tag2) will comply with
both conditions and get scores from both while the documents that
don't have both tags will on
You may want to take a look at the related discussion:
http://www.nabble.com/result-grouping--tf2910425.html#a8131895
Yonik suggested a dynamic priority queue... if the number of things
you are grouping by is small it is probably easier to make multiple
calls to solr.
ryan
On 3/16/07, Brian Lu
An example would help. A query and the results that you see.
wunder
On 3/18/07 6:48 PM, "shai deljo" <[EMAIL PROTECTED]> wrote:
> I assumed the tf/idf would behave like this but it's behaving VERY
> differently/wrong so i wonder maybe something is wrong with my
> indexing strategy ?
> I think fo
Thanks to everyone who responded thus far.
Simple is good for right now. Chris, is there a way to do what you describe
here (write a request handler that successively calls another request
handler by name) in the solrconfig.xml file, or does this require me to
write a custom RequestHandler in
15 matches
Mail list logo