Package org.exist.fulltext

Examples of org.exist.fulltext.FTIndexWorker


        return valueIndex;
    }

    @Override
    public TextSearchEngine getTextEngine() {
        final FTIndexWorker worker = (FTIndexWorker) indexController.getWorkerByIndexId(FTIndex.ID);
        if(worker == null) {
            LOG.warn("Fulltext index is not configured. Please check the <modules> section in conf.xml");
            return null;
        }
        return worker.getEngine();
    }
View Full Code Here

TOP

Related Classes of org.exist.fulltext.FTIndexWorker

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.