org.infinispan.client.hotrod

Interface RemoteCache<K,V>

    • Method Detail

      • removeWithVersion

        boolean removeWithVersion(K key,
                                long version)
        Removes the given entry only if its version matches the supplied version. A typical use case looks like this:
         VersionedEntry ve = remoteCache.getVersioned(key);
         //some processing
         remoteCache.removeWithVersion(key, ve.getVersion();
         
        Lat call (removeWithVersion) will make sure that the entry will only be removed if it hasn't been changed in between.
        Returns:
        true if the entry has been removed
        See Also:
        VersionedValue, getVersioned(Object)
      • removeWithVersionAsync

         removeWithVersionAsync(K key,
                                   long version)
        See Also:
        #remove(Object, Object)
      • replaceWithVersion

        boolean replaceWithVersion(K key,
                                 V newValue,
                                 long version)
        Replaces the given value only if its version matches the supplied version. See removeWithVersion(Object, long) for a sample usage of the version-based methods.
        Parameters:
        version - numeric version that should match the one in the server for the operation to succeed
        Returns:
        true if the value has been replaced
        See Also:
        getVersioned(Object), VersionedValue
      • replaceWithVersion

        boolean replaceWithVersion(K key,
                                 V newValue,
                                 long version,
                                 int lifespanSeconds)
        A overloaded form of replaceWithVersion(Object, Object, long) which takes in lifespan parameters.
        Parameters:
        key - key to use
        newValue - new value to be associated with the key
        version - numeric version that should match the one in the server for the operation to succeed
        lifespanSeconds - lifespan of the entry
        Returns:
        true if the value was replaced
      • replaceWithVersion

        boolean replaceWithVersion(K key,
                                 V newValue,
                                 long version,
                                 int lifespanSeconds,
                                 int maxIdleTimeSeconds)
        A overloaded form of replaceWithVersion(Object, Object, long) which takes in lifespan and maximum idle time parameters.
        Parameters:
        key - key to use
        newValue - new value to be associated with the key
        version - numeric version that should match the one in the server for the operation to succeed
        lifespanSeconds - lifespan of the entry
        maxIdleTimeSeconds - the maximum amount of time this key is allowed to be idle for before it is considered as expired
        Returns:
        true if the value was replaced
      • getWithMetadata

        MetadataValue<V> getWithMetadata(K key)
        Returns the MetadataValue associated to the supplied key param, or null if it doesn't exist.
      • size

        int size()
        Throws:
        java.lang.UnsupportedOperationException
      • isEmpty

        boolean isEmpty()
        Throws:
        java.lang.UnsupportedOperationException
      • containsValue

        boolean containsValue(java.lang.Object value)
        Throws:
        java.lang.UnsupportedOperationException
      • keySet

        java.util.Set<K> keySet()
        Returns all keys in the remote server. It'll invoke a command over the network each time this method is called. If the remote cache is a distributed cache, it will retrieve all of the keys from all nodes in the cluster. Please use with care for cache with large data set.
      • values

        java.util.Collection<V> values()
        Throws:
        java.lang.UnsupportedOperationException
      • entrySet

        java.util.Set<> entrySet()
        Throws:
        java.lang.UnsupportedOperationException
      • putAll

        void putAll(java.util.Map<? extends K,? extends V> map,
                  long lifespan,
                  java.util.concurrent.TimeUnit unit)
        Synthetic operation. The client iterates over the set of keys and calls put for each one of them. This results in operation not being atomic (if a failure happens after few puts it is not rolled back) and costly (for each key in the parameter map a remote call is performed).
      • withFlags

        RemoteCache<K,V> withFlags(Flag... flags)
        Applies one or more Flags to the scope of a single invocation. See the Flag enumeration to for information on available flags.

        Sample usage:

            remoteCache.withFlags(Flag.FORCE_RETURN_VALUE).put("hello", "world");
         
        Parameters:
        flags -
        Returns:
        the current RemoteCache instance to continue running operations on.
      • getBulk

        java.util.Map<K,V> getBulk()
        Bulk get operations, returns all the entries within the remote cache.
        Returns:
        the returned values depend on the configuration of the back-end infinispan servers. Read this for more details. The returned Map is unmodifiable.
      • getBulk

        java.util.Map<K,V> getBulk(int size)
        Same as getBulk(), but limits the returned set of values to the specified size. No ordering is guaranteed, and there is no guarantee that "size" elements are returned( e.g. if the number of elements in the back-end server is smaller that "size")
      • getProtocolVersion

        java.lang.String getProtocolVersion()
        Returns the HotRod protocol version supported by this RemoteCache implementation