relative token count in a query result

2012-11-20 Thread tech.vronk
Hello, earlier, I was trying to retrieve the total token count per index http://lucene.472066.n3.nabble.com/how-to-retrieve-total-token-count-per-collection-index-td4000161.html . now, I would like to have a token (word) count within the document-set (resulting of a query), both for the matchi

Re: mapping values in fields

2012-10-03 Thread tech.vronk
i.e. apply the analysis chain _then_ have the copyfield take effect which is not supported. I don't know how to accomplish this off the top of my head OOB, I'd guess your client would have to manage the substitutions and then just index separate fields... Best Erick On Tue, Oct 2, 2012 at 9

Re: mapping values in fields

2012-10-02 Thread tech.vronk
lue Best Erick On Tue, Oct 2, 2012 at 9:04 AM, tech.vronk wrote: Hi, I try to map values from one field into other values in another field. For example: original_field: orig_value1 mapped_field: mapped_value1 with the help of an explicitely defined (N:1) mapping: orig_value1 => mapped_val

mapping values in fields

2012-10-02 Thread tech.vronk
Hi, I try to map values from one field into other values in another field. For example: original_field: orig_value1 mapped_field: mapped_value1 with the help of an explicitely defined (N:1) mapping: orig_value1 => mapped_value1 orig_value2 => mapped_value1 orig_value3 => mapped_value2 I have tr

Re: configure saxon in 4.x

2012-09-29 Thread tech.vronk
any) unable to get their configuration right best, matej Am 28.09.2012 17:38, schrieb tech.vronk: hi, i am unable to configure saxon as the xslt-transformer of choice in solr 4.x (ALPHA and BETA) On startup, I keep getting the error

configure saxon in 4.x

2012-09-28 Thread tech.vronk
hi, i am unable to configure saxon as the xslt-transformer of choice in solr 4.x (ALPHA and BETA) On startup, I keep getting the error: null:javax.xml.transform.TransformerFactoryConfigurationError: Pr ovider net.sf.saxon.TransformerFactoryImpl not found even though the log before says, it is ad

Re: how to retrieve total token count per collection/index

2012-08-20 Thread tech.vronk
Am 09.08.2012 18:02, schrieb Robert Muir: On Thu, Aug 9, 2012 at 10:20 AM, tech.vronk wrote: Hello, I wonder how to figure out the total token count in a collection (per index), i.e. the size of a corpus/collection measured in tokens. You want to use this statistic, which tells you number

Re: how to retrieve total token count per collection/index

2012-08-09 Thread tech.vronk
Am 09.08.2012 18:02, schrieb Robert Muir: On Thu, Aug 9, 2012 at 10:20 AM, tech.vronk wrote: Hello, I wonder how to figure out the total token count in a collection (per index), i.e. the size of a corpus/collection measured in tokens. You want to use this statistic, which tells you number

how to retrieve total token count per collection/index

2012-08-09 Thread tech.vronk
Hello, I wonder how to figure out the total token count in a collection (per index), i.e. the size of a corpus/collection measured in tokens. The statistics in /admin tell the number of distinct terms, and the frequency list per index reveals the number of documents with given term. So even i