Re: How to Debug Sol-Code in Eclipse ?!

2010-08-23 Thread Drew Farris
On Sun, Aug 22, 2010 at 8:29 PM, stockii wrote: > > okay, thx. but it want work =( > > i checkout solr1.4.1 as dynamic web project into eclipse. startet jetty with > XDebug. In eclpise i add WebLogic exactly how the tutorial shows but eclipse > cannot connect =( > > any idea what im doing wrong ?

Re: How to Debug Sol-Code in Eclipse ?!

2010-08-22 Thread Drew Farris
After a build of what you have checked out, there's an instance you can run in the examples directory within the solr directory. 1.4.1 can be checked out from http://svn.apache.org/repos/asf/lucene/solr/tags/release-1.4.1/ On Sun, Aug 22, 2010 at 6:01 PM, stockii wrote: > > im stupid. XD > > how

Re: How to Debug Sol-Code in Eclipse ?!

2010-08-22 Thread Drew Farris
On Sun, Aug 22, 2010 at 8:22 AM, stockii wrote: > > thx for you reply. > > i dont want to test my own classes in unittest. i try to understand how solr > works , because i write a little text about solr and lucene. so i want go > through the code, step by step and find out on which places is solr

Re: WordDelimiterFilter and phrase queries?

2010-07-29 Thread Drew Farris
On Thu, Jul 29, 2010 at 3:15 PM, Chris Hostetter wrote: > > for dismax, the param you probably want to focus on is "qs" which is the > slop associated with phrase queries which are generated by the main query > from the "qf" query fields ... "ps" is the slop associated with the single > score boos

Re: WordDelimiterFilter and phrase queries?

2010-07-29 Thread Drew Farris
On Wed, Jul 28, 2010 at 10:25 PM, Chris Hostetter wrote: > > : Say someone enters the query string 3-diphenylpropanoic > : > : The query parser I'm using transforms this into a phrase query and the > : indexed form is missed because based the positions of the terms '3' > : and 'diphenylpropanoic'

WordDelimiterFilter and phrase queries?

2010-07-22 Thread Drew Farris
Hi All, A question about the WordDelimiterFilter and position increments / phrase queries: I have a string like: 3-diphenyl-propanoic When indexed gets it is broken up into the following tokens: pos token offset 1 3 0-1 2 diphenyl 2-10 3 propanoic 11-20 3 diphenylpropanoic 2-20 The WordDelimit