Daisy documentation
 PreviousHomeNext 
2.11.2 Change in schema uploader XML formatBook Index2.11.4 UserManager.getPublicUserInfo(...)

2.11.3 QueryManager.performFacetedQuery(...)

The method QueryManager.performFacetedQuery previously had arguments to specify the chunk offset and chunk length. These have been replaced with a Map "queryOptions" in which these can be specified (together with the other query options). This change has been made to make this method consistent with the other query methods, which now also allow to specify chunking parameters via the queryOptions map.

The key and value in the map should be string objects. For example:

Map queryOptions = new HashMap();
queryOptions.put("chunk_offset", "1");
queryOptions.put("chunk_length", "10");
 PreviousHomeNext 
2.11.2 Change in schema uploader XML format2.11.4 UserManager.getPublicUserInfo(...)