Examples of SQLBlobStore


Examples of org.apache.jackrabbit.oak.plugins.sqlpersistence.SQLBlobStore

         * @return this
         */
        public Builder setMongoJDBC(String jdbcurl, String username, String password) {
            // TODO maybe we need different connections for document store and node store
            this.documentStore = new SQLDocumentStore(jdbcurl, username, password);
            this.blobStore = new SQLBlobStore(jdbcurl, username, password);
            return this;
        }
View Full Code Here

Examples of org.apache.jackrabbit.oak.plugins.sqlpersistence.SQLBlobStore

public class SQLBlobStoreTest extends AbstractBlobStoreTest {

    private SQLBlobStore blobStore;

    public void setUp() throws Exception {
        blobStore = new SQLBlobStore();
        blobStore.setBlockSize(128);
        blobStore.setBlockSizeMin(48);
        this.store = blobStore;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.