Package com.basho.riak.client.api.commands.search

Examples of com.basho.riak.client.api.commands.search.StoreIndex


       
        // First we have to create an index and attach it to a bucket
        // and the 'default' bucket type can't be used for search
       
        YokozunaIndex index = new YokozunaIndex("test_mr_index");
        StoreIndex ssi = new StoreIndex.Builder(index).build();
        client.execute(ssi);
       
        assertTrue("Index not created", assureIndexExists("test_mr_index"));
       
        Namespace ns = new Namespace(bucketType.toString(), mrBucketName);
View Full Code Here

TOP

Related Classes of com.basho.riak.client.api.commands.search.StoreIndex

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.