[jira] Updated: (SOLR-215) Multiple Solr Cores

2007-06-08 Thread Henri Biestro (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Henri Biestro updated SOLR-215: --- Attachment: solr-215.patch New version of the patch that should be easier to verify. Created with: svn

[jira] Closed: (SOLR-245) Coding Style

2007-06-08 Thread Grant Ingersoll (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-245?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Grant Ingersoll closed SOLR-245. Resolution: Fixed This probably hits the main two IDE's that people use. People can feel free to

[jira] Updated: (SOLR-215) Multiple Solr Cores

2007-06-08 Thread Henri Biestro (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Henri Biestro updated SOLR-215: --- Description: What --- As of Solr 1.2, Solr only instantiates one SolrCore which handles one Lucene

[jira] Updated: (SOLR-215) Multiple Solr Cores

2007-06-08 Thread Henri Biestro (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Henri Biestro updated SOLR-215: --- Description: WHAT: As of 1.2, Solr only instantiates one SolrCore which handles one Lucene index. This

[jira] Updated: (SOLR-239) Read IndexSchema from InputStream instead of Config file

2007-06-08 Thread Will Johnson (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-239?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Will Johnson updated SOLR-239: -- Attachment: IndexSchemaStream2.patch new patch that includes a GetFile servlet to possibly replace

[jira] Commented: (SOLR-257) Add ability for WordDelimiterFilter to ignore case changes

2007-06-08 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12502840 ] Yonik Seeley commented on SOLR-257: --- Do people think the example text fieldType should default to

[jira] Updated: (SOLR-20) A simple Java client for updating and searching

2007-06-08 Thread Walter Ferrara (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-20?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Walter Ferrara updated SOLR-20: --- Comment: was deleted A simple Java client for updating and searching

[jira] Commented: (SOLR-20) A simple Java client for updating and searching

2007-06-08 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-20?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12502852 ] Yonik Seeley commented on SOLR-20: -- FYI partialURLEncodeVal was meant for readable, yet unambiguous logging... hence

[jira] Commented: (SOLR-20) A simple Java client for updating and searching

2007-06-08 Thread Walter Ferrara (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-20?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12502872 ] Walter Ferrara commented on SOLR-20: Latest rev works perfectly thanks. I've been making some time test with this

Re: A simple Java client for updating and searching

2007-06-08 Thread Yonik Seeley
On 6/8/07, Walter Ferrara (JIRA) [EMAIL PROTECTED] wrote: [ Walter Ferrara commented on SOLR-20: Latest rev works perfectly thanks. I've been making some time test with this client (only searching), and overall results show high times: this maybe due to

RE: [jira] Commented: (SOLR-20) A simple Java client for updating and searching

2007-06-08 Thread Will Johnson
Has anyone thought of adding the docsum time to the qtime or possibly adding separate timing information for the real 'solr query time'. While my bosses are very pleased that most searches seem to take ~5ms it does seem a bit misleading. I'll take a crack at a patch unless there is a reason not

[jira] Resolved: (SOLR-257) Add ability for WordDelimiterFilter to ignore case changes

2007-06-08 Thread Mike Klaas (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-257?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mike Klaas resolved SOLR-257. - Resolution: Fixed commited in r545597 with inverted logic and yonik's name suggestion. Add ability for

[jira] Commented: (SOLR-257) Add ability for WordDelimiterFilter to ignore case changes

2007-06-08 Thread Mike Klaas (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12502906 ] Mike Klaas commented on SOLR-257: - Might be a good idea. Case-based splitting is a relatively aggressive default

[jira] Commented: (SOLR-245) Coding Style

2007-06-08 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-245?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12502923 ] Hoss Man commented on SOLR-245: --- FYI: these are now attached to the wiki so they are easier to find...

Re: [Solr Wiki] Update of AnalyzersTokenizersTokenFilters by MikeKlaas

2007-06-08 Thread Chris Hostetter
:* '''generateWordParts=1''' causes parts of words to be generated: : * `PowerShot = Power Shot` : +* `Power-Shot = Power Shot` : + * '''splitOnCaseChange=1''' causes lowercase = uppercase transitions to generate a new part [Solr 1.3]: : +* `PowerShot = Power Shot` : +*

Re: [Solr Wiki] Update of AnalyzersTokenizersTokenFilters by MikeKlaas

2007-06-08 Thread Yonik Seeley
On 6/8/07, Chris Hostetter [EMAIL PROTECTED] wrote: :* '''generateWordParts=1''' causes parts of words to be generated: : * `PowerShot = Power Shot` : +* `Power-Shot = Power Shot` : + * '''splitOnCaseChange=1''' causes lowercase = uppercase transitions to generate a new part

RE: [jira] Commented: (SOLR-20) A simple Java client for updating and searching

2007-06-08 Thread Chris Hostetter
: Has anyone thought of adding the docsum time to the qtime or possibly : adding separate timing information for the real 'solr query time'. it's pretty much impossible to include in the response a value which indicates the total amount of time needed to generate the response... 1) the response

Re: [Solr Wiki] Update of AnalyzersTokenizersTokenFilters by MikeKlaas

2007-06-08 Thread Mike Klaas
On 8-Jun-07, at 2:44 PM, Chris Hostetter wrote: :* '''generateWordParts=1''' causes parts of words to be generated: : * `PowerShot = Power Shot` : +* `Power-Shot = Power Shot` : + * '''splitOnCaseChange=1''' causes lowercase = uppercase transitions to generate a new part

Re: [Solr Wiki] Update of AnalyzersTokenizersTokenFilters by MikeKlaas

2007-06-08 Thread Chris Hostetter
: I reorganized the parameters a bit to clarify this--let me know if : that helps. crystal. -Hoss