Package krati.store.factory

Examples of krati.store.factory.DataStoreFactory


            }
        }
    }
   
    public void testStaticDataStoreFactory() throws IOException {
        DataStoreFactory storeFactory = new StaticDataStoreFactory();
        DataStore<byte[], byte[]> store = storeFactory.create(_config);
        assertEquals(StaticDataStore.class, store.getClass());
        store.close();
    }
View Full Code Here


        assertEquals(StaticDataStore.class, store.getClass());
        store.close();
    }
   
    public void testDynamicDataStoreFactory() throws IOException {
        DataStoreFactory storeFactory = new DynamicDataStoreFactory();
        DataStore<byte[], byte[]> store = storeFactory.create(_config);
        assertEquals(DynamicDataStore.class, store.getClass());
        store.close();
    }
View Full Code Here

        assertEquals(DynamicDataStore.class, store.getClass());
        store.close();
    }
   
    public void testIndexedDataStoreFactory() throws IOException {
        DataStoreFactory storeFactory = new IndexedDataStoreFactory();
        DataStore<byte[], byte[]> store = storeFactory.create(_config);
        assertEquals(IndexedDataStore.class, store.getClass());
        store.close();
    }
View Full Code Here

        configTemplate.setSegmentFileSizeMB(32);
        configTemplate.setNumSyncBatches(2);
        configTemplate.setBatchSize(100);
       
        // Create multi-tenant store responder
        DataStoreFactory storeFactory = new IndexedDataStoreFactory();
        StoreResponderFactory responderFactory = new BasicDataStoreResponderFactory(storeFactory);
        MultiTenantStoreResponder mtStoreResponder = new MultiTenantStoreResponder(homeDir, configTemplate, responderFactory);
       
        String source;
        StoreResponder responder;
View Full Code Here

        configTemplate.setSegmentFileSizeMB(32);
        configTemplate.setNumSyncBatches(2);
        configTemplate.setBatchSize(100);
       
        // Create multi-tenant store responder
        DataStoreFactory storeFactory = new IndexedDataStoreFactory();
        StoreResponderFactory responderFactory = new BasicDataStoreResponderFactory(storeFactory);
        MultiTenantStoreResponder mtStoreResponder = new MultiTenantStoreResponder(homeDir, configTemplate, responderFactory);
       
        String source;
        StoreResponder responder;
View Full Code Here

        configTemplate.setSegmentFileSizeMB(32);
        configTemplate.setNumSyncBatches(2);
        configTemplate.setBatchSize(100);
       
        // Create store responder and server
        DataStoreFactory storeFactory = new IndexedDataStoreFactory();
        MultiTenantStoreResponder storeResponder = new MultiTenantStoreResponder(homeDir, configTemplate, new BasicDataStoreResponderFactory(storeFactory));
        HttpServer server = new HttpServer(storeResponder, 8080);
        server.start();
        server.join();
    }
View Full Code Here

TOP

Related Classes of krati.store.factory.DataStoreFactory

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.