Package com.flaptor.indextank.query

Examples of com.flaptor.indextank.query.MatchAllQuery


       
        @Override
        public int size() throws IndextankException {
            try {
                logger.debug("Fetching size");
                Query query = new Query(new MatchAllQuery(),null,null);
                int size = this.searcher.countMatches(query);
                logger.info("Fetched size: " + size);
                return size;
            } catch (RuntimeException e) {
                logger.error("RuntimeException while processing size. Will throw an IndexTankException. Original Exception is:", e);
View Full Code Here

TOP

Related Classes of com.flaptor.indextank.query.MatchAllQuery

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.