returning selective text in search result

2006-04-06 Thread samuel kim
Hi all, How do I get the return result to only return the contiguous relevant word sequences separated by a "..." Currently, it just returns the whole field. Thanks -sam _ Search on the go: Try Windows Live(tm) Search for Mobile

Re: XML Query

2006-04-06 Thread Chris Hostetter
: Would you recomend extending StandardRequestHandler or implementing : SolrRequestHandler for the XmlRequestHandler? subclassing StandardRequestHandler doesn't really get you much at the moment. If you're interested in writing an XmlRequestHandler, i would start by refactoring the guts of Stand

Re: XML Query

2006-04-06 Thread jason rutherglen
Would you recomend extending StandardRequestHandler or implementing SolrRequestHandler for the XmlRequestHandler? - Original Message From: Chris Hostetter <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Cc: jason rutherglen <[EMAIL PROTECTED]> Sent: Thursday, April 6, 2006 2:50:57 PM

Re: XML Query

2006-04-06 Thread jason rutherglen
Thanks, yes creating a RequestHandler is how Solr is designed to be used. - Original Message From: Chris Hostetter <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Cc: jason rutherglen <[EMAIL PROTECTED]> Sent: Thursday, April 6, 2006 2:50:57 PM Subject: Re: XML Query : > I think s

Re: Multiple sorts?

2006-04-06 Thread Chris Hostetter
: : Does Solr support multiple sorts? Meaning sorting on multiple fields? Yep, there are some examples in the tutorial... http://incubator.apache.org/solr/tutorial.html#Sorting Solr provides a simple extension to the Lucene QueryParser syntax for specifying sort options. After your search, add

Multiple sorts?

2006-04-06 Thread jason rutherglen
Does Solr support multiple sorts? Meaning sorting on multiple fields?

Re: XML Query

2006-04-06 Thread Chris Hostetter
: > I think someone asked about this. Seems like it would be good to : migrate to an XML HTTP POST for the query call to SolrServlet and use step one would be SOLR-7, supporting POST queries at all, step 2 would be adding support for the XML parser. : The easiest way would be to add another par

Re: XML Query

2006-04-06 Thread Yonik Seeley
On 4/6/06, jason rutherglen <[EMAIL PROTECTED]> wrote: > I think someone asked about this. Seems like it would be good to migrate to > an XML HTTP POST for the query call to SolrServlet and use and extend the XML > query pieces. I have a requirement to do span queries and would like to > imple

XML Query

2006-04-06 Thread jason rutherglen
I think someone asked about this. Seems like it would be good to migrate to an XML HTTP POST for the query call to SolrServlet and use and extend the XML query pieces. I have a requirement to do span queries and would like to implement recomended queries and result highlighting.