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

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


                log.info("KiWi Value Factory: database registry");
                registry        = new DBTripleRegistry(store);
                break;
            case CACHE:
                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;
View Full Code Here

TOP

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

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.