setNeedDocSet and queries cached in filter_cache

2013-11-18 Thread Daniel Rosher
Hi, We've written a few searchComponenets that make use of rb.setNeedDocSet(true); the trouble with this is that the query gets cached in the filter_cache, and we think are purging our more 'useful' docsets from the filter_cache. Has anyone else noticed this and has a useful remedy? We are

Dynamic Query Analyzer

2013-09-03 Thread Daniel Rosher
Hi, We have a need to specify a different query analyzer depending on input parameters dynamically. We need this so that we can use different stopword lists at query time. Would any one know how I might be able to achieve this in solr? I'm aware of the solution to specify different field

facet filtering

2013-07-15 Thread Daniel Rosher
Hi, How can I have faceting on a subset of the query docset e.g. with something akin to: SimpleFacets.base = SolrIndexSearcher.getDocSet( Query mainQuery, SolrIndexSearcher.getDocSet(Query filter) ) Is there anything like facet.fq? Cheers, Dan

Re: overlap function query

2013-01-30 Thread Daniel Rosher
#coord%28int,%20int%29but it requires deep understanding of Lucene internals On Tue, Jan 29, 2013 at 2:12 PM, Daniel Rosher rosh...@gmail.com wrote: Hi, I'm wondering if there exists or if someone has implemented something like the following as a function query: overlap(query,field

overlap function query

2013-01-29 Thread Daniel Rosher
Hi, I'm wondering if there exists or if someone has implemented something like the following as a function query: overlap(query,field) = number of matching terms in field/number of terms in field e.g. with three docs having these tokens(e.g.A B C) in a field D 1:A B B 2:A B 3:A The overlap

Re: Additional field informations?

2012-11-20 Thread Daniel Rosher
Hi, Have a look at DocTransformers http://wiki.apache.org/solr/DocTransformers and ExplainAugmenterFactory as an example Cheers, Dan On Tue, Nov 20, 2012 at 3:08 PM, Sebastian Hofmann hofman...@uni-jena.dewrote: Hello all, We import xml documents to solr with solrj. We use xsl to proccess

Re: Custom ranking solutions?

2012-11-20 Thread Daniel Rosher
Hi The product function query needs a valuesource, not the pseudo score field. You probably need something like (with Solr 4.0): q={!lucene}*:*sort=product(query($q),2) desc,score descfl=score,_score_:product(query($q),2),[explain] Cheers, Dan On Tue, Nov 20, 2012 at 2:29 AM, Floyd Wu

Re: Synonym Filter: Removing all original tokens, retain matched synonyms

2012-10-10 Thread Daniel Rosher
Ah ha .. good thinking ... thanks! Dan On Wed, Oct 10, 2012 at 2:39 PM, Ahmet Arslan iori...@yahoo.com wrote: Token_Input: the fox jumped over the lazy dog Synonym_Map: fox = vulpes dog = canine Token_Output: vulpes canine So remove all tokens, but retain those matched

solr.WordDelimiterFilterFactory

2008-11-20 Thread Daniel Rosher
Hi, I'm trying to index some content that has things like 'java/J2EE' but with solr.WordDelimiterFilterFactory and parameters [generateWordParts=1 generateNumberParts=0 catenateWords=0 catenateNumbers=0 catenateAll=0 splitOnCaseChange=0] this ends up tokenized as 'java','j','2',EE' Does anyone

Re: Auto complete

2008-07-08 Thread daniel rosher
are copy fields of the same. Any help is appreciated. Thanks Sundar _ Chose your Life Partner? Join MSN Matrimony http://www.shaadi.com/msn/matrimony.php This email has been scanned for virus and spam content Daniel Rosher

solrj.embedded.JettySolrRunner and logging to file instead of STDERR

2008-06-19 Thread Daniel Rosher
Hi, I've modified a copy of ./src/test/org/apache/solr/TestDistributedSearch.java for my own build process. I can compile fine but running the test always logs to STDERR INFO: Logging to STDERR via org.mortbay.log.StdErrLog This method appears deprecated? //public JettySolrRunner( String

FunctionQuery step function

2008-02-13 Thread Daniel Rosher
Hi All, We'd like to restrict older modified documents with a step function, rather than the suggested method: *recip(rord(creationDate),1,1000,1000). I'm wondering whether the following might do it, and if anyone else has had to solve this before?