Interface RedisTransactionalAsyncCommands<K,​V>

    • Method Detail

      • discard

        RedisFuture<String> discard()
        Discard all commands issued after MULTI.
        Returns:
        String simple-string-reply always OK.
      • multi

        RedisFuture<String> multi()
        Mark the start of a transaction block.
        Returns:
        String simple-string-reply always OK.
      • watch

        RedisFuture<String> watch​(K... keys)
        Watch the given keys to determine execution of the MULTI/EXEC block.
        Parameters:
        keys - the key.
        Returns:
        String simple-string-reply always OK.
      • unwatch

        RedisFuture<String> unwatch()
        Forget about all watched keys.
        Returns:
        String simple-string-reply always OK.