Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by NoblePaul: http://wiki.apache.org/solr/Solrj ------------------------------------------------------------------------------ {{{ String url = "http://localhost:8983/solr"; - SolrServer server = new CommonsHttpSolrServer( url ); + CommonsHttpSolrServer server = new CommonsHttpSolrServer( url ); ... }}} - + === Setting BinaryResponseParser === + Anew binary response format is added for solr 1.3. It is a faster/smaller format . To use that add the following snippet. + {{{ + solrServer.setParser(new BinaryResponseParser()); + }}} + === Changing other Connection Settings === If you need to control other connection settings, you can cast the server to !CommonsHttpSolrServer. {{{
