Class RedissonReactiveClusterServerCommands

java.lang.Object
org.redisson.spring.data.connection.RedissonReactiveServerCommands
org.redisson.spring.data.connection.RedissonReactiveClusterServerCommands
All Implemented Interfaces:
org.springframework.data.redis.connection.ReactiveClusterServerCommands, org.springframework.data.redis.connection.ReactiveServerCommands

public class RedissonReactiveClusterServerCommands extends RedissonReactiveServerCommands implements org.springframework.data.redis.connection.ReactiveClusterServerCommands
Author:
Nikita Koksharov
  • Method Summary

    Modifier and Type
    Method
    Description
    reactor.core.publisher.Mono<String>
    bgReWriteAof(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Mono<String>
    bgSave(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Mono<Long>
    dbSize(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Mono<String>
    flushAll(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Mono<String>
    flushDb(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Flux<org.springframework.data.redis.core.types.RedisClientInfo>
    getClientList(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Mono<Properties>
    getConfig(org.springframework.data.redis.connection.RedisClusterNode node, String pattern)
     
    reactor.core.publisher.Mono<Properties>
     
    reactor.core.publisher.Mono<Properties>
    info(String section)
     
    reactor.core.publisher.Mono<Properties>
    info(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Mono<Properties>
    info(org.springframework.data.redis.connection.RedisClusterNode node, String section)
     
    reactor.core.publisher.Mono<Long>
    lastSave(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Mono<String>
    resetConfigStats(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Mono<String>
    save(org.springframework.data.redis.connection.RedisClusterNode node)
     
    reactor.core.publisher.Mono<String>
    setConfig(org.springframework.data.redis.connection.RedisClusterNode node, String param, String value)
     
    reactor.core.publisher.Mono<Long>
    time(org.springframework.data.redis.connection.RedisClusterNode node)
     
    static byte[]
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.springframework.data.redis.connection.ReactiveServerCommands

    bgReWriteAof, bgSave, dbSize, flushAll, flushDb, getClientList, getClientName, getConfig, killClient, lastSave, resetConfigStats, save, setClientName, setConfig, time, time
  • Method Details

    • bgReWriteAof

      public reactor.core.publisher.Mono<String> bgReWriteAof(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      bgReWriteAof in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • bgSave

      public reactor.core.publisher.Mono<String> bgSave(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      bgSave in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • lastSave

      public reactor.core.publisher.Mono<Long> lastSave(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      lastSave in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • save

      public reactor.core.publisher.Mono<String> save(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      save in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • dbSize

      public reactor.core.publisher.Mono<Long> dbSize(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      dbSize in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • flushDb

      public reactor.core.publisher.Mono<String> flushDb(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      flushDb in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • flushAll

      public reactor.core.publisher.Mono<String> flushAll(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      flushAll in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • info

      public reactor.core.publisher.Mono<Properties> info()
      Specified by:
      info in interface org.springframework.data.redis.connection.ReactiveServerCommands
      Overrides:
      info in class RedissonReactiveServerCommands
    • info

      public reactor.core.publisher.Mono<Properties> info(String section)
      Specified by:
      info in interface org.springframework.data.redis.connection.ReactiveServerCommands
      Overrides:
      info in class RedissonReactiveServerCommands
    • info

      public reactor.core.publisher.Mono<Properties> info(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      info in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • info

      public reactor.core.publisher.Mono<Properties> info(org.springframework.data.redis.connection.RedisClusterNode node, String section)
      Specified by:
      info in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • getConfig

      public reactor.core.publisher.Mono<Properties> getConfig(org.springframework.data.redis.connection.RedisClusterNode node, String pattern)
      Specified by:
      getConfig in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • setConfig

      public reactor.core.publisher.Mono<String> setConfig(org.springframework.data.redis.connection.RedisClusterNode node, String param, String value)
      Specified by:
      setConfig in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • resetConfigStats

      public reactor.core.publisher.Mono<String> resetConfigStats(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      resetConfigStats in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • time

      public reactor.core.publisher.Mono<Long> time(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      time in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • getClientList

      public reactor.core.publisher.Flux<org.springframework.data.redis.core.types.RedisClientInfo> getClientList(org.springframework.data.redis.connection.RedisClusterNode node)
      Specified by:
      getClientList in interface org.springframework.data.redis.connection.ReactiveClusterServerCommands
    • toByteArray

      public static byte[] toByteArray(ByteBuffer buffer)