Class PersistenceConfiguration

    • Method Detail

      • passivation

        public boolean passivation()
        If true, data is only written to the cache store when it is evicted from memory, a phenomenon known as 'passivation'. Next time the data is requested, it will be 'activated' which means that data will be brought back to memory and removed from the persistent store. This gives you the ability to 'overflow' to disk, similar to swapping in an operating system.

        If false, the cache store contains a copy of the contents in memory, so writes to cache result in cache store writes. This essentially gives you a 'write-through' configuration.
      • availabilityInterval

        public int availabilityInterval()
      • connectionAttempts

        public int connectionAttempts()
      • connectionInterval

        public int connectionInterval()
      • fetchPersistentState

        public java.lang.Boolean fetchPersistentState()
        Loops through all individual cache loader configs and checks if fetchPersistentState is set on any of them
      • preload

        public java.lang.Boolean preload()
        Loops through all individual cache loader configs and checks if preload is set on any of them
      • usingStores

        public boolean usingStores()
      • usingAsyncStore

        public boolean usingAsyncStore()
      • usingSegmentedStore

        public boolean usingSegmentedStore()
        Returns if any store is StoreConfiguration.segmented()
        Returns:
        true if any configured store is segmented, otherwise false
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object