Class PersistenceManagerImpl

    • Constructor Detail

      • PersistenceManagerImpl

        public PersistenceManagerImpl()
    • Method Detail

      • start

        public void start()
        Description copied from interface: Lifecycle
        Invoked on component start
        Specified by:
        start in interface Lifecycle
      • activePublisherInvocations

        public int activePublisherInvocations()
        Returns how many publisher invocations are currently active.
        Returns:
        count of active publisher instances
      • pollStoreAvailability

        protected void pollStoreAvailability()
      • stop

        public void stop()
        Description copied from interface: Lifecycle
        Invoked on component stop
        Specified by:
        stop in interface Lifecycle
      • isAvailable

        public boolean isAvailable()
        Specified by:
        isAvailable in interface PersistenceManager
        Returns:
        true if all configured stores are available and ready for read/write operations.
      • isPreloaded

        public boolean isPreloaded()
        Specified by:
        isPreloaded in interface PersistenceManager
        Returns:
        true if all entries from the store have been inserted to the cache. If the persistence/preload is disabled or eviction limit was reached when preloading, returns false.
      • preload

        public void preload()
        Description copied from interface: PersistenceManager
        Loads the data from the external store into memory during cache startup.
        Specified by:
        preload in interface PersistenceManager
      • publishEntries

        public <K,​V> org.reactivestreams.Publisher<MarshalledEntry<K,​V>> publishEntries​(Predicate<? super K> filter,
                                                                                                    boolean fetchValue,
                                                                                                    boolean fetchMetadata,
                                                                                                    Predicate<? super StoreConfiguration> predicate)
        Description copied from interface: PersistenceManager
        Returns a publisher that will publish all entries stored by the underlying cache store. Only the first cache store that implements AdvancedCacheLoader will be used. Predicate is applied by the underlying loader in a best attempt to improve performance.

        Caller can tell the store to also fetch the value or metadata. In some cases this can improve performance. If metadata is not fetched the publisher may include expired entries.

        Specified by:
        publishEntries in interface PersistenceManager
        Type Parameters:
        K - key type
        V - value type
        Parameters:
        filter - filter so that only entries whose key matches are returned
        fetchValue - whether to fetch value or not
        fetchMetadata - whether to fetch metadata or not
        predicate - whether a store can be used by publish entries
        Returns:
        publisher that will publish entries
      • publishEntries

        public <K,​V> org.reactivestreams.Publisher<MarshalledEntry<K,​V>> publishEntries​(IntSet segments,
                                                                                                    Predicate<? super K> filter,
                                                                                                    boolean fetchValue,
                                                                                                    boolean fetchMetadata,
                                                                                                    Predicate<? super StoreConfiguration> predicate)
        Description copied from interface: PersistenceManager
        Returns a publisher that will publish entries that map to the provided segments. It will attempt to find the first segmented store if one is available. If not it will fall back to the first non segmented store and filter out entries that don't map to the provided segment.
        Specified by:
        publishEntries in interface PersistenceManager
        Type Parameters:
        K - key type
        V - value type
        Parameters:
        segments - only entries that map to these segments are processed
        filter - filter so that only entries whose key matches are returned
        fetchValue - whether to fetch value or not
        fetchMetadata - whether to fetch metadata or not
        predicate - whether a store can be used by publish entries
        Returns:
        publisher that will publish entries belonging to the given segments
      • publishKeys

        public <K> org.reactivestreams.Publisher<K> publishKeys​(Predicate<? super K> filter,
                                                                Predicate<? super StoreConfiguration> predicate)
        Description copied from interface: PersistenceManager
        Returns a publisher that will publish all keys stored by the underlying cache store. Only the first cache store that implements AdvancedCacheLoader will be used. Predicate is applied by the underlying loader in a best attempt to improve performance.

        This method should be preferred over PersistenceManager.publishEntries(Predicate, boolean, boolean, Predicate) when only keys are desired as many stores can do this in a significantly more performant way.

        This publisher will never return a key which belongs to an expired entry

        Specified by:
        publishKeys in interface PersistenceManager
        Type Parameters:
        K - key type
        Parameters:
        filter - filter so that only keys which match are returned
        predicate - access mode to choose what type of loader to use
        Returns:
        publisher that will publish keys
      • publishKeys

        public <K> org.reactivestreams.Publisher<K> publishKeys​(IntSet segments,
                                                                Predicate<? super K> filter,
                                                                Predicate<? super StoreConfiguration> predicate)
        Description copied from interface: PersistenceManager
        Returns a publisher that will publish keys that map to the provided segments. It will attempt to find the first segmented store if one is available. If not it will fall back to the first non segmented store and filter out entries that don't map to the provided segment.

        This method should be preferred over PersistenceManager.publishEntries(IntSet, Predicate, boolean, boolean, Predicate) when only keys are desired as many stores can do this in a significantly more performant way.

        This publisher will never return a key which belongs to an expired entry

        Specified by:
        publishKeys in interface PersistenceManager
        Type Parameters:
        K - key type
        Parameters:
        segments - only keys that map to these segments are processed
        filter - filter so that only keys which match are returned
        predicate - access mode to choose what type of loader to use
        Returns:
        publisher that will publish keys belonging to the given segments
      • loadFromAllStores

        public MarshalledEntry loadFromAllStores​(Object key,
                                                 boolean localInvocation,
                                                 boolean includeStores)
        Description copied from interface: PersistenceManager
        Loads an entry from the persistence store for the given key. The returned value may be null. This value is guaranteed to not be expired when it was returned.
        Specified by:
        loadFromAllStores in interface PersistenceManager
        Parameters:
        key - key to read the entry from
        localInvocation - whether this invocation is a local invocation. Some loaders may be ignored if it is not local
        includeStores - if a loader that is also a store can be loaded from
        Returns:
        entry that maps to the key
      • loadFromAllStores

        public MarshalledEntry loadFromAllStores​(Object key,
                                                 int segment,
                                                 boolean localInvocation,
                                                 boolean includeStores)
        Description copied from interface: PersistenceManager
        Same as PersistenceManager.loadFromAllStores(Object, boolean, boolean) except that the segment of the key is also provided to avoid having to calculate the segment.
        Specified by:
        loadFromAllStores in interface PersistenceManager
        Parameters:
        key - key to read the entry from
        segment - segment the key maps to
        localInvocation - whether this invocation is a local invocation. Some loaders may be ignored if it is not local
        includeStores - if a loader that is also a store can be loaded from
        Returns:
        entry that maps to the key
      • writeToAllNonTxStores

        public void writeToAllNonTxStores​(MarshalledEntry marshalledEntry,
                                          int segment,
                                          Predicate<? super StoreConfiguration> predicate)
        Description copied from interface: PersistenceManager
        Write to all stores that are not transactional. A store is considered transactional if all of the following are true:

        • The store implements TransactionalCacheWriter
        • The store is configured to be transactional
        • The cache's TransactionMode === TRANSACTIONAL

        Specified by:
        writeToAllNonTxStores in interface PersistenceManager
        Parameters:
        marshalledEntry - the entry to be written to all non-tx stores.
        segment - the segment the entry maps to
        predicate - should we write to a given store
      • deleteBatchFromAllNonTxStores

        public void deleteBatchFromAllNonTxStores​(Iterable<Object> keys,
                                                  Predicate<? super StoreConfiguration> predicate,
                                                  long flags)
        Description copied from interface: PersistenceManager
        Remove all entries from the underlying non-transactional stores as a single batch.
        Specified by:
        deleteBatchFromAllNonTxStores in interface PersistenceManager
        Parameters:
        keys - a List of Keys to be removed from the store.
        predicate - whether a given store should delete the entries
        flags - Flags used during command invocation
      • size

        public int size​(Predicate<? super StoreConfiguration> predicate)
        Description copied from interface: PersistenceManager
        Returns the count of how many entries are persisted. If no store can handle the request for the given mode a value of -1 is returned instead.
        Specified by:
        size in interface PersistenceManager
        Parameters:
        predicate - whether a loader can be used
        Returns:
        size or -1 if size couldn't be computed
      • size

        public int size​(IntSet segments)
        Description copied from interface: PersistenceManager
        Returns the count of how many entries are persisted within the given segments. The returned value will always be 0 or greater.
        Specified by:
        size in interface PersistenceManager
        Parameters:
        segments - which segments to count entries from
        Returns:
        how many entries are in the store which map to the given segments
      • addSegments

        public boolean addSegments​(IntSet segments)
        Description copied from interface: PersistenceManager
        Notifies any underlying segmented stores that the segments provided are owned by this cache and to start/configure any underlying resources required to handle requests for entries on the given segments.

        This only affects stores that are not shared as shared stores have to keep all segments running at all times

        This method returns true if all stores were able to handle the added segments. That is that either there are no stores or that all the configured stores are segmented. Note that configured loaders do not affect the return value.

        Specified by:
        addSegments in interface PersistenceManager
        Parameters:
        segments - segments this cache owns
        Returns:
        false if a configured store couldn't configure newly added segments
      • removeSegments

        public boolean removeSegments​(IntSet segments)
        Description copied from interface: PersistenceManager
        Notifies any underlying segmented stores that a given segment is no longer owned by this cache and allowing it to remove the given segments and release resources related to it.

        This only affects stores that are not shared as shared stores have to keep all segments running at all times

        This method returns true if all stores were able to handle the added segments. That is that either there are no stores or that all the configured stores are segmented. Note that configured loaders do not affect the return value.

        Specified by:
        removeSegments in interface PersistenceManager
        Parameters:
        segments - segments this cache no longer owns
        Returns:
        false if a configured store couldn't remove configured segments