Package com.basho.riak.client.http.request

Examples of com.basho.riak.client.http.request.MapReduceBuilder


     *            keys in bucket ] }
     *
     * @return A {@link MapReduceBuilder} to build the map reduce job
     */
    public MapReduceBuilder mapReduceOverObjects(Map<String, Set<String>> objects) {
        return new MapReduceBuilder(this).setRiakObjects(objects);
    }
View Full Code Here


     * @param search
     *            The query that riak-search will execute
     * @return A {@link MapReduceBuilder} to build the map reduce job
     */
    public MapReduceBuilder mapReduceOverSearch(String bucket, String search) {
        return new MapReduceBuilder(this).setBucket(bucket).setSearch(search);
    }
View Full Code Here

TOP

Related Classes of com.basho.riak.client.http.request.MapReduceBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.