aliasing?

2011-05-08 Thread deniz
anyone knows about aliasing in Lucene/Solr? I need to implement something and there is a title called on the task list as aliasing... I have few ideas though but still not clear... anyone can explain that to me or refer some docs? -- View this message in context: http://lucene.472066.n3.nabble.

Re: Dismax Request handler and Solrconfig.xml

2011-05-08 Thread Peter Spam
I'm having the same problem - the standard query returns all my documents, but the dismax one returns 0. Any ideas? http://server:8983/solr/select?qt=standard&indent=on&q=* − 0 3592 − on standard * − − [...] ---

Re: Solr Search fails

2011-05-08 Thread deniz
solved... gotta use wildcards... -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Search-fails-tp2907093p2917602.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Search fails

2011-05-08 Thread deniz
well the line with id is universal/user/id sorry for the typo... and problem is still going on -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Search-fails-tp2907093p2917555.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: phpnative response writer in SOLR 3.1 ?

2011-05-08 Thread Israel Ekpo
Sorry for the late response. I am working on an updated version for the latest release of Solr and Lucene I will post my changes soon within the week. Thank you for your patience. On Fri, Apr 15, 2011 at 3:20 AM, Ralf Kraus wrote: > Am 14.04.2011 09:53, schrieb Ralf Kraus: > > Hello, >> >> I

Re: PECL SOLR PHP extension, JSON output

2011-05-08 Thread Israel Ekpo
There are instructions here for Solr 1.4 https://issues.apache.org/jira/browse/SOLR-1967 I have not finished the version of the plugin that will allow you to use phpnative in 3.1 yet I will post them as soon as I can I have not been working on the PECL extension for a while now but I am plannin

reranking and field cache usage

2011-05-08 Thread Zhi-Da Zhong
Hello, I'm experimenting with ways to add some degree of diversity to search results by re-ranking them. For example, I might want to take the top 100 docs (sorted by score), and rearrange them so that no more than 2 results share a particular attribute x within any 20-result block. It's a best

Re: upper limit to boost weight/value ?

2011-05-08 Thread Ravi Gidwani
Thanks Lance. On Sun, May 8, 2011 at 7:34 PM, Lance Norskog wrote: > There is no upper limit. These are floats. But they can be small too. > Boost < 1 are 'under normal'. > > One radix sorting trick is to boost one field 1000 and another field > 5. If the first field is a string facet, this give

Re: Solr Search fails

2011-05-08 Thread deniz
well... i have made some changes to see what happens... here is the current situation... not only search but also indexing fails... here is my dataconfig file: http://blablabla/6564"; processor="XPathEntityProcessor" forEach="/

Re: upper limit to boost weight/value ?

2011-05-08 Thread Lance Norskog
There is no upper limit. These are floats. But they can be small too. Boost < 1 are 'under normal'. One radix sorting trick is to boost one field 1000 and another field 5. If the first field is a string facet, this gives each group of results in one long query. Lucene sorting does radix also, of c

upper limit to boost weight/value ?

2011-05-08 Thread Ravi Gidwani
Hello: Is there any upper limit to the boost weight/value ? For example in the following query : &qf=exact_title^2000+exact_category^1900+exact_tags^1700 are these boost values acceptable and work as expected ? Thanks, ~Ravi Gidwani

RE: *:* query with dismax

2011-05-08 Thread Jason Chaffee
This is what I thought, but for some reason I wasn't able to get it to work before. Thus, I sent the email. However, maybe I forgot to not specify q because it is working fine for me now. Thanks everyone. -Original Message- From: Rob Casson [mailto:rob.cas...@gmail.com] Sent: Fri 5/

Highlighting does not work when using !boost as a nested query

2011-05-08 Thread Juan Antonio Farré Basurte
Hi, I need to boost newer documents in my dismax queries. As I've been able to read in the wiki, it's best to use a multiplicative boost. The only way I know to do this with the dismax (not edismax) query parser is via a {!boost b=$dateboost v=$qq defType=dismax} query. To make things more complic