Package org.apache.jackrabbit.oak.plugins.document.rdb

Examples of org.apache.jackrabbit.oak.plugins.document.rdb.RDBOptions


    private static final Logger LOG = LoggerFactory.getLogger(RDBBlobStoreTest.class);

    @Before
    @Override
    public void setUp() throws Exception {
        blobStore = new RDBBlobStore(RDBDataSourceFactory.forJdbcUrl(URL, USERNAME, PASSWD), new RDBOptions().tablePrefix("test").dropTablesOnClose(true));
        blobStore.setBlockSize(128);
        blobStore.setBlockSizeMin(48);
        this.store = blobStore;
        empty(blobStore);
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.document.rdb.RDBOptions

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.