Package org.apache.marmotta.kiwi.persistence.registry

Examples of org.apache.marmotta.kiwi.persistence.registry.LocalTripleRegistry


                log.info("KiWi Value Factory: cache registry");
                registry        = new CacheTripleRegistry(store.getPersistence().getCacheManager());
                break;
            case LOCAL:
                log.info("KiWi Value Factory: in-memory registry");
                registry        = new LocalTripleRegistry();
                break;
            default:
                log.info("KiWi Value Factory: in-memory registry");
                registry        = new LocalTripleRegistry();
        }

        this.store          = store;
        this.defaultContext = defaultContext;
    }
View Full Code Here

TOP

Related Classes of org.apache.marmotta.kiwi.persistence.registry.LocalTripleRegistry

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.