Package net.sf.jsr107cache

Examples of net.sf.jsr107cache.Cache


    /**
     * Rimuove dalla Memcache l'oggetto relativo alla chiave data in input
     */
    public static void cacheRemove(String id) {
        Cache cache;
        cache = CacheSupport.cacheInit();

        cache.remove(id);
    }


     * poichè la configurazione della Memcache è interamente gestita in questa
     * classe.
     */
    private static Cache cacheInit() {

        Cache cache;

        try {
            CacheFactory cacheFactory = CacheManager.getInstance()
                    .getCacheFactory();
            cache = cacheFactory.createCache(Collections.emptyMap());

TOP

Related Classes of net.sf.jsr107cache.Cache

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.