All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.redisson.spring.data.connection.RedissonReactiveClusterServerCommands Maven / Gradle / Ivy
/**
* Copyright (c) 2013-2024 Nikita Koksharov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.redisson.spring.data.connection;
import java.util.List;
import java.util.Properties;
import org.redisson.client.RedisClient;
import org.redisson.client.codec.StringCodec;
import org.redisson.client.protocol.RedisCommands;
import org.redisson.client.protocol.RedisStrictCommand;
import org.redisson.connection.MasterSlaveEntry;
import org.redisson.reactive.CommandReactiveExecutor;
import org.springframework.data.redis.connection.ReactiveClusterServerCommands;
import org.springframework.data.redis.connection.RedisClusterNode;
import org.springframework.data.redis.connection.RedisServerCommands;
import org.springframework.data.redis.connection.convert.StringToRedisClientInfoConverter;
import org.springframework.data.redis.core.types.RedisClientInfo;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/**
*
* @author Nikita Koksharov
*
*/
public class RedissonReactiveClusterServerCommands extends RedissonReactiveServerCommands implements ReactiveClusterServerCommands {
RedissonReactiveClusterServerCommands(CommandReactiveExecutor executorService) {
super(executorService);
}
@Override
public Mono bgReWriteAof(RedisClusterNode node) {
return execute(node, BGREWRITEAOF);
}
@Override
public Mono bgSave(RedisClusterNode node) {
return execute(node, BGSAVE);
}
@Override
public Mono lastSave(RedisClusterNode node) {
return execute(node, RedisCommands.LASTSAVE);
}
@Override
public Mono save(RedisClusterNode node) {
return execute(node, SAVE);
}
@Override
public Mono dbSize(RedisClusterNode node) {
return execute(node, RedisCommands.DBSIZE);
}
private static final RedisStrictCommand FLUSHDB = new RedisStrictCommand("FLUSHDB");
@Override
public Mono flushDb(RedisClusterNode node) {
return execute(node, FLUSHDB);
}
private static final RedisStrictCommand FLUSHALL = new RedisStrictCommand("FLUSHALL");
@Override
public Mono flushAll(RedisClusterNode node) {
return execute(node, FLUSHALL);
}
@Override
public Mono flushDb(RedisClusterNode node, RedisServerCommands.FlushOption option) {
if (option == RedisServerCommands.FlushOption.ASYNC) {
return execute(node, FLUSHDB, option.toString());
}
return execute(node, FLUSHDB);
}
@Override
public Mono flushAll(RedisClusterNode node, RedisServerCommands.FlushOption option) {
if (option == RedisServerCommands.FlushOption.ASYNC) {
return execute(node, FLUSHALL, option.toString());
}
return execute(node, FLUSHALL);
}
@Override
public Mono info() {
return read(null, StringCodec.INSTANCE, INFO_DEFAULT);
}
@Override
public Mono info(String section) {
return read(null, StringCodec.INSTANCE, INFO, section);
}
@Override
public Mono info(RedisClusterNode node) {
return execute(node, INFO_DEFAULT);
}
@Override
public Mono info(RedisClusterNode node, String section) {
return execute(node, INFO, section);
}
@Override
public Mono getConfig(RedisClusterNode node, String pattern) {
return execute(node, CONFIG_GET, pattern);
}
@Override
public Mono setConfig(RedisClusterNode node, String param, String value) {
return execute(node, CONFIG_SET, param, value);
}
@Override
public Mono resetConfigStats(RedisClusterNode node) {
return execute(node, CONFIG_RESETSTAT);
}
@Override
public Mono time(RedisClusterNode node) {
return execute(node, TIME);
}
private static final StringToRedisClientInfoConverter CONVERTER = new StringToRedisClientInfoConverter();
@Override
public Flux getClientList(RedisClusterNode node) {
RedisClient entry = getEntry(node);
Mono> m = executorService.reactive(() -> {
return executorService.readAsync(entry, StringCodec.INSTANCE, RedisCommands.CLIENT_LIST);
});
return m.flatMapMany(s -> Flux.fromIterable(CONVERTER.convert(s.toArray(new String[s.size()]))));
}
}