[ 
https://issues.apache.org/jira/browse/LUCENE-1209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12576644#action_12576644
 ] 

Mark Miller commented on LUCENE-1209:
-------------------------------------

It seems to me that its not working right. Everything that is set in public 
void setConfig(Config config) is only set once for me, not per round. That is 
unless I apply the above patch. This means that I cannot seem to set 
tokenizing, storing, or termvectors per round.

>From what I can tell it is because setConfig is only called once, and so only 
>the first value is every read for those properties. The patch above puts set 
>config in the resetInputs method which does get called per round. Not sure if 
>that is the best fix, but I know cannot currently set those per round and have 
>anything but the first setting take effect.

- Mark

> If setConfig(Config config) is called in resetInputs(), you can turn term 
> vectors off and on by round
> -----------------------------------------------------------------------------------------------------
>
>                 Key: LUCENE-1209
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1209
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: contrib/benchmark
>    Affects Versions: 2.4
>            Reporter: Mark Miller
>            Priority: Trivial
>         Attachments: reset_config.patch
>
>
> I want to be able to run one benchmark that tests things using term vectors 
> and not using term vectors.
> Currently this is not easy because you cannot specify term vectors per round.
> While you do have to create a new index per round, this automation is 
> preferable to me in comparison to running two separate tests.
> If it doesn't affect anything else, it would be great to have 
> setConfig(Config config) called in BasicDocMaker.resetInputs(). This would 
> keep the term vector options up to date per round if you reset.
> - Mark

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to