Class CaffeineCache

java.lang.Object
com.erudika.para.server.cache.CaffeineCache
All Implemented Interfaces:
com.erudika.para.core.cache.Cache

@Singleton public class CaffeineCache extends Object implements com.erudika.para.core.cache.Cache
Default implementation of the Cache interface using Caffeine. Multitenancy is achieved by caching objects from each app using composite keys: prefix_objectId.
Author:
Alex Bogdanovski [[email protected]]
  • Constructor Details

    • CaffeineCache

      public CaffeineCache()
      Default constructor.
  • Method Details

    • contains

      public boolean contains(String appid, String id)
      Specified by:
      contains in interface com.erudika.para.core.cache.Cache
    • put

      public <T> void put(String appid, String id, T object)
      Specified by:
      put in interface com.erudika.para.core.cache.Cache
    • put

      public <T> void put(String appid, String id, T object, Long ttlSeconds)
      Specified by:
      put in interface com.erudika.para.core.cache.Cache
    • putAll

      public <T> void putAll(String appid, Map<String,T> objects)
      Specified by:
      putAll in interface com.erudika.para.core.cache.Cache
    • get

      public <T> T get(String appid, String id)
      Specified by:
      get in interface com.erudika.para.core.cache.Cache
    • getAll

      public <T> Map<String,T> getAll(String appid, List<String> ids)
      Specified by:
      getAll in interface com.erudika.para.core.cache.Cache
    • remove

      public void remove(String appid, String id)
      Specified by:
      remove in interface com.erudika.para.core.cache.Cache
    • removeAll

      public void removeAll(String appid)
      Specified by:
      removeAll in interface com.erudika.para.core.cache.Cache
    • removeAll

      public void removeAll(String appid, List<String> ids)
      Specified by:
      removeAll in interface com.erudika.para.core.cache.Cache
    • contains

      public boolean contains(String id)
      /////////////////////////////////////////////////
      Specified by:
      contains in interface com.erudika.para.core.cache.Cache
    • put

      public <T> void put(String id, T object)
      Specified by:
      put in interface com.erudika.para.core.cache.Cache
    • putAll

      public <T> void putAll(Map<String,T> objects)
      Specified by:
      putAll in interface com.erudika.para.core.cache.Cache
    • get

      public <T> T get(String id)
      Specified by:
      get in interface com.erudika.para.core.cache.Cache
    • getAll

      public <T> Map<String,T> getAll(List<String> ids)
      Specified by:
      getAll in interface com.erudika.para.core.cache.Cache
    • remove

      public void remove(String id)
      Specified by:
      remove in interface com.erudika.para.core.cache.Cache
    • removeAll

      public void removeAll()
      Specified by:
      removeAll in interface com.erudika.para.core.cache.Cache
    • removeAll

      public void removeAll(List<String> ids)
      Specified by:
      removeAll in interface com.erudika.para.core.cache.Cache