Package com.github.mrcritical.ironcache.model

Examples of com.github.mrcritical.ironcache.model.CacheItemRequest


  private String cacheName;

  private int index;

  private void addToCache(final String cacheName, final int index, Object value) {
    final CacheItemRequest request = CacheItemRequest.create().key(TEST_CACHE_PREFIX_KEY + index).value(value)
        .expireAfter(EXPIRATION_IN_SECONDS).onlyIfNotExists();
    cacheProvider.putItem(cacheName, request);
  }
View Full Code Here

TOP

Related Classes of com.github.mrcritical.ironcache.model.CacheItemRequest

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.