You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by Bertrand Delacretaz <bd...@apache.org> on 2006/10/16 12:04:02 UTC

XSLTResponseWriter patch and SolrParams (was: changes before release?)

On 10/9/06, Chris Hostetter <ho...@fucit.org> wrote:

> ..the one thing about your
> patch in it's current format that I rememebr not being fond of using XML
> node attributes to configure queryResponseWriters...

Ok, makes sense. I have attached a revised version of my patch as
solr-XSLTResponseWriter-20060922.tar.gz  in SOLR-49, the
XSLTResponseWriter is now configured like this:

  <queryResponseWriter
    name="xslt"
    class="org.apache.solr.request.XSLTResponseWriter"
   >
     <int name="xsltCacheLifetimeSeconds">5</int>
   </queryResponseWriter>

And this is processed using NamedList and SolrParams as you suggested.

-Bertrand