Package org.xbib.elasticsearch.skywalker

Examples of org.xbib.elasticsearch.skywalker.FormatDetails


                Set<FieldTermCount> ftc = skywalker.getFieldTermCounts();
                response.put("numTerms", skywalker.getNumTerms());

                Map indexFormatInfo = new HashMap();
                FormatDetails details = skywalker.getFormatDetails();
                indexFormatInfo.put("version", details.getVersion());
                indexFormatInfo.put("genericName", details.getGenericName());
                indexFormatInfo.put("capabilities", details.getCapabilities());
                response.put("indexFormat", indexFormatInfo);

                List commits = new ArrayList();
                Iterator<Segment> it = indexShard.engine().segments().iterator();
                while (it.hasNext()) {
View Full Code Here

TOP

Related Classes of org.xbib.elasticsearch.skywalker.FormatDetails

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.