Re: searchcomponent howto ...

2009-07-01 Thread DJP
thanks. that's what I was looking for. On Mon, Jun 22, 2009 at 4:15 PM, Chris Hostetter hossman_luc...@fucit.orgwrote: : and then ask, :- how can i set the value of query so that it is reflected in the 'q' : node of the search results e.g. str name=qsolr/str. : the example 'process'

Re: searchcomponent howto ...

2009-06-22 Thread Chris Hostetter
: and then ask, :- how can i set the value of query so that it is reflected in the 'q' : node of the search results e.g. str name=qsolr/str. : the example 'process' method above works, but the original query is still : written to the search results page. if you're talking about the param

Re: searchcomponent howto ...

2009-06-08 Thread Grant Ingersoll
Is there a question here? On Jun 7, 2009, at 2:50 PM, David Palaitis wrote: I'm trying to write a very simple SearchComponent that performs a simple operation on the query string before passing through to QueryComponent. The EncodingSearchComponent will perform something like the

Re: searchcomponent howto ...

2009-06-08 Thread DJP
sorry. my 'tab' character is linked to 'send'. i meant to include this bit of source @Override public void process(ResponseBuilder rb) throws IOException { SolrQueryRequest request = rb.req; SolrParams params = request.getParams();

searchcomponent howto ...

2009-06-07 Thread David Palaitis
I'm trying to write a very simple SearchComponent that performs a simple operation on the query string before passing through to QueryComponent. The EncodingSearchComponent will perform something like the following Base64(MD5(querystring))