Package com.google.appengine.api.memcache

Examples of com.google.appengine.api.memcache.Stats


        return -1;
    }

    @Override
    public long getCachedCount() {
        final Stats statistics = memcacheService.getStatistics();
        if (null != statistics) {
            return statistics.getItemCount();
        }

        return -1;
    }
View Full Code Here

TOP

Related Classes of com.google.appengine.api.memcache.Stats

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.