Package com.google.appengine.api.memcache

Examples of com.google.appengine.api.memcache.MemcacheService.clearAll()


    @Test
    public void testNamespace() {
        // memcache.setNamespace() is deprecated.
        MemcacheService otherMemcache = MemcacheServiceFactory.getMemcacheService("other");
        otherMemcache.clearAll();
        memcache.clearAll();

        String key = createTimeStampKey("testNamespace");
        otherMemcache.put(key, "default");
        assertNull("This key should not exist in the default namespace.", memcache.get(key));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.