Package edu.brown.benchmark.wikipedia

Examples of edu.brown.benchmark.wikipedia.WikipediaLoader


        HStoreConf hstore_conf = HStoreConf.singleton();
        String args[] = {
            "NOCONNECTIONS=true",
            "CLIENT.SCALEFACTOR=" + hstore_conf.client.scalefactor,
        };
        WikipediaLoader loader = new WikipediaLoader(args) {
            {
                this.setCatalogContext(catalogContext);
                this.setClientHandle(client);
            }
            @Override
            public CatalogContext getCatalogContext() {
                return (catalogContext);
            }
        };
        loader.load();
        return (loader);
    }
View Full Code Here

TOP

Related Classes of edu.brown.benchmark.wikipedia.WikipediaLoader

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.