Re: FastVectorHighlighter wiki corrections

2012-01-15 Thread Koji Sekiguchi
Hi Mike, (12/01/11 16:14), Michael Lissner wrote: - I need help with fragsize. The wiki says to set it to either 0 or a huge number to disable fragmenting. Which is it? It is original Highlighter. - the wiki says that hl.useFastVectorHighlighter is defaulted to false. I read somewhere

Re: best query for one-box search string over multiple types fields?

2012-01-15 Thread François Schiettecatte
Johnny What you are going to want to do is boost the artist field with respect to the others, for example using edismax my 'qf' parameter is: number^5 title^3 default so hits in the number field get a five-fold boost and hits in the title field get a three-fold boost. In your case

Re: Faceting Question

2012-01-15 Thread Lee Carroll
 Does that make more sense? Ah I see. I'm not certain but take a look at pivot faceting https://issues.apache.org/jira/browse/SOLR-792 cheers lee c

Re: Determining which shard is failing using partialResults / some other technique?

2012-01-15 Thread Peter Sturge
Hi, There are a couple ways of handling this. One is to do it from the 'client' side - i.e. do a Solr ping to each shard beforehand to find out which/if any shards are unavailable. This may not always work if you use forwarders/proxies etc. What we do is add the name of all failed shards to the

Re: Faceting Question

2012-01-15 Thread Peter Sturge
Hi, It's quite coincidental that I was just about to ask this very question to the forum experts. I think this is the same sort of thing Jamie was asking about. (the only difference in my question is that the values won't be known at query time) Is it possible to create a request that will

RE: GermanAnalyzer

2012-01-15 Thread spring
What is an equivalent fieldType definition in Solr 3.5? fieldType name=text_foo class=solr.TextField analyzer class=org.apache.lucene.analysis.de.GermanAnalyzer/ /fieldType OK, and if I would reindex, is this still the best practice config for german text?

Re: Getting started with indexing a database

2012-01-15 Thread Rakesh Varna
Hi Mike, Can you try removing ' field column=doc_id name=DOC_ID / from the nested entities? Just keep it in the top level entity. Regards, Rakesh Varna On Wed, Jan 11, 2012 at 7:26 AM, Gora Mohanty g...@mimirtech.com wrote: On Tue, Jan 10, 2012 at 7:09 AM, Mike O'Leary tmole...@uw.edu

Re: xpathentityprocessor with flattern true

2012-01-15 Thread Rakesh Varna
Try using flatten=true in the field rather than the entity. Note that it will remove all child node names, and will only concatenate the text values of the child nodes. example: root part idabc/id iddef/id idghi/id field column=CommonIDs xpath=/root/part flatten=true / will concatenate abc,

Re: Synonym configuration not working?

2012-01-15 Thread Bernd Fehling
Yes and No. If using Synonyms funtionality out of the box you have to do it at index time. But if using it at query time, like we do, you have to do some programming. We have connected a thesaurus which is actually using synonyms functionality at query time. There are some pitfalls to take care