Feature - remainTimeToLive(Set keys) and clearExpire(Set keys) methods added to RMapCacheNative
Fixed - RMapCacheNative.clearExpire() method doesn't workpull/6047/head
parent
29ee9500aa
commit
b6174b05a8
@ -0,0 +1,61 @@
|
||||
/**
|
||||
* 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.connection.decoder;
|
||||
|
||||
import org.redisson.client.handler.State;
|
||||
import org.redisson.client.protocol.decoder.MultiDecoder;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Nikita Koksharov
|
||||
*
|
||||
*/
|
||||
public class MapNativeAllDecoder implements MultiDecoder<Map<Object, Object>> {
|
||||
|
||||
private final List<Object> args;
|
||||
private final Class<?> valueClass;
|
||||
|
||||
public MapNativeAllDecoder(List<Object> args, Class<?> valueClass) {
|
||||
this.args = args;
|
||||
this.valueClass = valueClass;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<Object, Object> decode(List<Object> parts, State state) {
|
||||
if (parts.isEmpty()) {
|
||||
return new HashMap<>();
|
||||
}
|
||||
Map<Object, Object> result = new LinkedHashMap<>(parts.size());
|
||||
for (int index = 0; index < parts.size(); index++) {
|
||||
Long value = (Long) parts.get(index);
|
||||
if (value == -2 && valueClass != Long.class) {
|
||||
continue;
|
||||
}
|
||||
if (valueClass == Boolean.class) {
|
||||
result.put(args.get(index), value == 1);
|
||||
} else {
|
||||
result.put(args.get(index), value);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue