Package org.apache.lucene.store.jdbc

Examples of org.apache.lucene.store.jdbc.JdbcDirectory


            throw new RegistryException(msg);
        }
    }

    public void deleteFromIndex(RequestContext requestContext) throws RegistryException {
        JdbcDirectory jdbcDir = RegistryContext.getBaseInstance().getJdbcDir();
        Resource resource = requestContext.getResource();
        id = resource.getId();

        try {
            IndexReader reader = IndexReader.open(jdbcDir);
View Full Code Here

TOP

Related Classes of org.apache.lucene.store.jdbc.JdbcDirectory

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.