Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allowing the request method (POST or GET) configuration. #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion grails-app/services/org/grails/solr/SolrService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import org.apache.solr.client.solrj.impl.XMLResponseParser
import org.codehaus.groovy.grails.commons.ConfigurationHolder
import org.apache.solr.client.solrj.SolrQuery
import org.apache.solr.client.solrj.response.QueryResponse
import org.apache.solr.client.solrj.SolrRequest;
import org.grails.solr.*


Expand Down Expand Up @@ -77,7 +78,9 @@ class SolrService {
* @return Map with 'resultList' - list of Maps representing results and 'queryResponse' - Solrj query result
*/
def search(SolrQuery solrQuery) {
QueryResponse rsp = getServer().query( solrQuery );

def method = (grailsApplication.config.solr?.method == "POST") ? SolrRequest.METHOD.POST : SolrRequest.METHOD.GET
QueryResponse rsp = getServer().query( solrQuery, method );


def results = []
Expand Down