Package org.neo4j.rest.graphdb.index

Examples of org.neo4j.rest.graphdb.index.IndexInfo


        getRestRequest().with(entity.getUri()).delete( "" );
        entityCache.remove(entity.getId());
    }
    @Override
    public IndexInfo indexInfo(final String indexType) {
        IndexInfo indexInfo = indexInfos.get(indexType);
        if (indexInfo != null && !indexInfo.isExpired()) {
//            return indexInfo;
        }
        RequestResult response = restRequest.get("index/" + encode(indexType));
        indexInfo = new RetrievedIndexInfo(response);
        indexInfos.put(indexType,indexInfo);
View Full Code Here

TOP

Related Classes of org.neo4j.rest.graphdb.index.IndexInfo

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.