You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.5 KiB
109 lines
3.5 KiB
7 years ago
|
/**
|
||
7 years ago
|
* Copyright 2018 Nikita Koksharov
|
||
7 years ago
|
*
|
||
|
* 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.
|
||
|
*/
|
||
7 years ago
|
package com.fr.third.org.redisson;
|
||
7 years ago
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.Arrays;
|
||
|
import java.util.Collection;
|
||
|
import java.util.List;
|
||
|
|
||
7 years ago
|
import com.fr.third.org.redisson.api.RFuture;
|
||
|
import com.fr.third.org.redisson.api.RHyperLogLog;
|
||
|
import com.fr.third.org.redisson.client.codec.Codec;
|
||
|
import com.fr.third.org.redisson.client.protocol.RedisCommands;
|
||
|
import com.fr.third.org.redisson.api.RFuture;
|
||
|
import com.fr.third.org.redisson.api.RHyperLogLog;
|
||
|
import com.fr.third.org.redisson.client.codec.Codec;
|
||
|
import com.fr.third.org.redisson.client.protocol.RedisCommands;
|
||
|
import com.fr.third.org.redisson.command.CommandAsyncExecutor;
|
||
7 years ago
|
|
||
7 years ago
|
/**
|
||
|
*
|
||
|
* @author Nikita Koksharov
|
||
|
*
|
||
|
* @param <V> value
|
||
|
*/
|
||
7 years ago
|
public class RedissonHyperLogLog<V> extends RedissonExpirable implements RHyperLogLog<V> {
|
||
|
|
||
|
protected RedissonHyperLogLog(CommandAsyncExecutor commandExecutor, String name) {
|
||
|
super(commandExecutor, name);
|
||
|
}
|
||
|
|
||
|
protected RedissonHyperLogLog(Codec codec, CommandAsyncExecutor commandExecutor, String name) {
|
||
|
super(codec, commandExecutor, name);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean add(V obj) {
|
||
|
return get(addAsync(obj));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean addAll(Collection<V> objects) {
|
||
|
return get(addAllAsync(objects));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public long count() {
|
||
|
return get(countAsync());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public long countWith(String... otherLogNames) {
|
||
|
return get(countWithAsync(otherLogNames));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void mergeWith(String... otherLogNames) {
|
||
|
get(mergeWithAsync(otherLogNames));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Boolean> addAsync(V obj) {
|
||
|
return commandExecutor.writeAsync(getName(), codec, RedisCommands.PFADD, getName(), encode(obj));
|
||
7 years ago
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Boolean> addAllAsync(Collection<V> objects) {
|
||
7 years ago
|
List<Object> args = new ArrayList<Object>(objects.size() + 1);
|
||
|
args.add(getName());
|
||
7 years ago
|
encode(args, objects);
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), codec, RedisCommands.PFADD, getName(), args.toArray());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> countAsync() {
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), codec, RedisCommands.PFCOUNT, getName());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> countWithAsync(String... otherLogNames) {
|
||
7 years ago
|
List<Object> args = new ArrayList<Object>(otherLogNames.length + 1);
|
||
|
args.add(getName());
|
||
|
args.addAll(Arrays.asList(otherLogNames));
|
||
|
return commandExecutor.writeAsync(getName(), codec, RedisCommands.PFCOUNT, args.toArray());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Void> mergeWithAsync(String... otherLogNames) {
|
||
7 years ago
|
List<Object> args = new ArrayList<Object>(otherLogNames.length + 1);
|
||
|
args.add(getName());
|
||
|
args.addAll(Arrays.asList(otherLogNames));
|
||
|
return commandExecutor.writeAsync(getName(), codec, RedisCommands.PFMERGE, args.toArray());
|
||
|
}
|
||
|
|
||
|
}
|