当前位置: 首页>>代码示例>>Java>>正文


Java Cache.put方法代码示例

本文整理汇总了Java中org.springframework.cache.Cache.put方法的典型用法代码示例。如果您正苦于以下问题:Java Cache.put方法的具体用法?Java Cache.put怎么用?Java Cache.put使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.cache.Cache的用法示例。


在下文中一共展示了Cache.put方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testPut

import org.springframework.cache.Cache; //导入方法依赖的package包/类
@Test
public void testPut() throws Exception {
    Cache proxy = new ConcurrentMapCache("foo");
    proxy.put("bar", "value");
    proxy.put("baz", "value");
    FluuzCache fluuzCache = new FluuzCache(eventManager, proxy);
    eventManager.register(fluuzCache);
    Thread.sleep(2000);

    eventManager.evict("foo", "bar");

    Thread.sleep(2000);

    String value = null;
    ValueWrapper vw = proxy.get("bar");
    if (vw == null) {

    }
    System.out.println("->" + value);
}
 
开发者ID:ArawakCC,项目名称:fluuz,代码行数:21,代码来源:RedisEventManagerTest.java

示例2: updateCache

import org.springframework.cache.Cache; //导入方法依赖的package包/类
@AfterReturning ("@annotation(fr.gael.dhus.spring.cache.IncrementCache)")
public void updateCache (JoinPoint joinPoint)
{
   IncrementCache annotation = ((MethodSignature) joinPoint.getSignature ())
         .getMethod ().getAnnotation (IncrementCache.class);

   Cache cache = getCacheManager().getCache(annotation.name());
   if (cache != null)
   {
      synchronized (cache)
      {
         Integer old_value = cache.get (annotation.key (), Integer.class);
         cache.clear ();
         if (old_value == null)
         {
            return;
         }
         cache.put (annotation.key (), (old_value + annotation.value ()));
      }
   }
}
 
开发者ID:SentinelDataHub,项目名称:dhus-core,代码行数:22,代码来源:CacheAspectDefinition.java

示例3: validateTmpUser

import org.springframework.cache.Cache; //导入方法依赖的package包/类
@Transactional (readOnly=false, propagation=Propagation.REQUIRED)
public void validateTmpUser (String code)
{
   User u = userDao.getUserFromUserCode (code);
   if (u != null && userDao.isTmpUser (u))
   {
      userDao.registerTmpUser (u);

      // update cache entries
      Cache cache = cacheManager.getCache("user");
      if (cache != null)
      {
         synchronized (cache)
         {
            if (cache.get(u.getUUID()) != null)
            {
               cache.put(u.getUUID(), u);
            }
         }
      }

      cache = cacheManager.getCache("userByName");
      if (cache != null)
      {
         synchronized (cache)
         {
            if (cache.get(u.getUsername()) != null)
            {
               cache.put(u.getUsername(), u);
            }
         }
      }
   }
}
 
开发者ID:SentinelDataHub,项目名称:dhus-core,代码行数:35,代码来源:UserService.java

示例4: apply

import org.springframework.cache.Cache; //导入方法依赖的package包/类
public void apply(Object result) {
	if (this.context.canPutToCache(result)) {
		for (Cache cache : this.context.getCaches()) {
			cache.put(this.key, result);
		}
	}
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:8,代码来源:CacheAspectSupport.java

示例5: putToCache

import org.springframework.cache.Cache; //导入方法依赖的package包/类
/**
 * 向缓存中添加 缓存数据
 *
 * @param cache Cache
 * @param key   Cache key
 * @param value Cache value, null will return false
 * @return True is successful,otherwise false
 */
protected boolean putToCache(Cache cache, Object key, Object value) {
    if (value == null) {
        LOG.debug("Ignore put to cache[{}], key = {}, because value is null", cache, key);
        return false;
    }
    cache.put(key, value);
    LOG.debug("Put [{} = {}] to cache[{}]", key, value, cache);
    return true;
}
 
开发者ID:monkeyk,项目名称:oauth2-shiro-redis,代码行数:18,代码来源:AbstractCacheSupport.java

示例6: putCache

import org.springframework.cache.Cache; //导入方法依赖的package包/类
/**
 * 设置缓存数据
 * @param cache
 * @param key
 * @param value
 * @return
 */
protected boolean putCache(Cache cache, String key, Object value) {
    if (null == value) {
        return false;
    }
    cache.put(key, value);

    return true;
}
 
开发者ID:cwenao,项目名称:springboot_cwenao,代码行数:16,代码来源:AbstractCacheSupport.java


注:本文中的org.springframework.cache.Cache.put方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。