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 The comment on the change is: added javadoc links ------------------------------------------------------------------------------ = CommonsHttpSolrServer = - The [http://svn.apache.org/repos/asf/lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/impl/CommonsHttpSolrServer.java CommonsHttpSolrServer] uses the [http://jakarta.apache.org/httpcomponents/httpclient-3.x/ Apache Commons HTTP Client] to connect to solr. + The [http://lucene.apache.org/solr/api/org/apache/solr/client/solrj/impl/CommonsHttpSolrServer.html CommonsHttpSolrServer] uses the [http://jakarta.apache.org/httpcomponents/httpclient-3.x/ Apache Commons HTTP Client] to connect to solr. {{{ String url = "http://localhost:8983/solr"; @@ -37, +37 @@ [[Anchor(EmbeddedSolrServer)]] = EmbeddedSolrServer = - The [http://svn.apache.org/repos/asf/lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/embedded/EmbeddedSolrServer.java EmbeddedSolrServer] provides the same interface without requiring an HTTP connection. + The [http://lucene.apache.org/solr/api/org/apache/solr/client/solrj/embedded/EmbeddedSolrServer.html EmbeddedSolrServer] provides the same interface without requiring an HTTP connection. {{{ @@ -63, +63 @@ = Usage = - Solrj is designed as an extendable framework to pass [http://svn.apache.org/repos/asf/lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/SolrRequest.java SolrRequest] to the [http://svn.apache.org/repos/asf/lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/SolrServer.java SolrServer] and return a [http://svn.apache.org/repos/asf/lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/SolrResponse.java SolrResponse]. + Solrj is designed as an extendable framework to pass [http://lucene.apache.org/solr/api/org/apache/solr/client/solrj/SolrRequest.html SolrRequest] to the [http://lucene.apache.org/solr/api/org/apache/solr/client/solrj/SolrServer.html SolrServer] and return a [http://lucene.apache.org/solr/api/org/apache/solr/client/solrj/SolrResponse.html SolrResponse]. - For simplicity, the most common commands are modeled in the [http://svn.apache.org/repos/asf/lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/SolrServer.java SolrServer]: + For simplicity, the most common commands are modeled in the [http://lucene.apache.org/solr/api/org/apache/solr/client/solrj/SolrServer.html SolrServer]: == Adding Data to Solr == @@ -172, +172 @@ {{{ SolrServer server = getSolrServer(); }}} - * Construct a !SolrQuery + * Construct a [http://lucene.apache.org/solr/api/org/apache/solr/client/solrj/SolrQuery.html SolrQuery] {{{ SolrQuery query = new SolrQuery(); query.setQuery( "*:*" );
