Ignore:
Timestamp:
2014-12-08T14:46:32+13:00 (9 years ago)
Author:
kjdon
Message:

work around does_paging, does_chunking. only add in maxdocs, hitsperpage params if the service actually uses them. lucnee/solr, don't use maxdocs any more. I haven't had a chance to clean up the changes, but I need to commit, so there may be extraneous debug statements still here.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/service/SharedSoleneGS2FieldSearch.java

    r29543 r29558  
    4949    public SharedSoleneGS2FieldSearch()
    5050    {
    51       super();
     51        does_paging = true;
     52        does_chunking = false; // actually it can but we don't want to do a max docs, as we are already paging results
     53
    5254        // Lucene/Solr uses double operators, not single
    5355        //AND_OPERATOR = "&&";
     
    5759        NOT_OPERATOR = "NOT";
    5860
    59         does_paging = true;
    60         does_chunking = true;
    6161    }
    6262
Note: See TracChangeset for help on using the changeset viewer.