Uses of Interface
org.flasby.util.Cache

Packages that use Cache
Package
Description
 
  • Uses of Cache in org.flasby.util

    Subinterfaces of Cache in org.flasby.util
    Modifier and Type
    Interface
    Description
    interface 
    BlockingCache<Key,Value>
     
    Classes in org.flasby.util that implement Cache
    Modifier and Type
    Class
    Description
    class 
    ShinyCache<Key,Value>
    is a cache which handles entry expiry and will ensure that multiple simultaneous requests using the same key will only make a single request to get the missing value.
    class 
    SimpleCache<Key,Value>
    is a simple cache which looks-up values if the key has no entry.
    It is not very smart and does not handle simultaneous requests from multiple threads well as it will request the value multiple times.
    There is no cache expiry support either.