Join backport to 3.x

2012-05-10 Thread Valeriy Felberg
Hi, i've applied the patch from https://issues.apache.org/jira/browse/SOLR-2604 to Solr 3.5. It works but noticeably slows down the query time. Did someone already solve that problem? Cheers, Valeriy

Re: Lexical analysis tools for German language data

2012-04-12 Thread Valeriy Felberg
If you want that query "jacke" matches a document containing the word "windjacke" or "kinderjacke", you could use a custom update processor. This processor could search the indexed text for words matching the pattern ".*jacke" and inject the word "jacke" into an additional field which you can searc

Re: A tool for frequent re-indexing...

2012-04-06 Thread Valeriy Felberg
I've implemented something like described in https://issues.apache.org/jira/browse/SOLR-3246. The idea is to add an update request processor at the end of the update chain in the core you want to copy. The processor converts the SolrInputDocument to XML (there is some utility method for doing this)

Search over multiple indexes

2011-11-28 Thread Valeriy Felberg
Hello, I'm trying to implement automatic document classification and store the classified attributes as an additional field in Solr document. Then the search goes against that field like q=classified_category:xyz. The document classification is currently implemented as an UpdateRequestProcessor an