Package com.esri.gpt.server.assertion.index

Examples of com.esri.gpt.server.assertion.index.AsnIndexAdapter


          if ((asnIndexRef != null) && asnIndexRef.getEnabled()) {
            String asnLoc = asnIndexRef.getIndexLocation();
            LOGGER.fine("Optimizing assertion index: "+asnLoc);
            try {
              long asnStartMillis = System.currentTimeMillis();
              AsnIndexAdapter asnIndexAdapter = asnIndexRef.makeIndexAdapter(null);
              asnIndexAdapter.optimize();
             
              double asnSec = (System.currentTimeMillis() - asnStartMillis) / 1000.0;
              StringBuffer msg = new StringBuffer();
              msg.append("Optimization of assertion index complete: "+asnLoc);
              msg.append(", runtime: ");
View Full Code Here

TOP

Related Classes of com.esri.gpt.server.assertion.index.AsnIndexAdapter

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.