spring-data-redis LettuceKeyCommands 源码
spring-data-redis LettuceKeyCommands 代码
文件路径:/src/main/java/org/springframework/data/redis/connection/lettuce/LettuceKeyCommands.java
/*
* Copyright 2017-2022 the original author or authors.
*
* 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
*
* https://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.springframework.data.redis.connection.lettuce;
import io.lettuce.core.CopyArgs;
import io.lettuce.core.KeyScanCursor;
import io.lettuce.core.RestoreArgs;
import io.lettuce.core.ScanArgs;
import io.lettuce.core.ScanCursor;
import io.lettuce.core.SortArgs;
import io.lettuce.core.api.async.RedisKeyAsyncCommands;
import java.time.Duration;
import java.util.List;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import org.springframework.dao.InvalidDataAccessApiUsageException;
import org.springframework.data.redis.connection.DataType;
import org.springframework.data.redis.connection.RedisKeyCommands;
import org.springframework.data.redis.connection.SortParameters;
import org.springframework.data.redis.connection.ValueEncoding;
import org.springframework.data.redis.connection.ValueEncoding.RedisValueEncoding;
import org.springframework.data.redis.connection.convert.Converters;
import org.springframework.data.redis.core.Cursor;
import org.springframework.data.redis.core.ScanOptions;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
* @author Christoph Strobl
* @author Mark Paluch
* @author ihaohong
* @since 2.0
*/
class LettuceKeyCommands implements RedisKeyCommands {
private final LettuceConnection connection;
LettuceKeyCommands(LettuceConnection connection) {
this.connection = connection;
}
@Override
public Boolean copy(byte[] sourceKey, byte[] targetKey, boolean replace) {
Assert.notNull(sourceKey, "source key must not be null");
Assert.notNull(targetKey, "target key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::copy, sourceKey, targetKey,
CopyArgs.Builder.replace(replace));
}
@Override
public Boolean exists(byte[] key) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().from(RedisKeyAsyncCommands::exists, key).get(LettuceConverters.longToBooleanConverter());
}
@Nullable
@Override
public Long exists(byte[]... keys) {
Assert.notNull(keys, "Keys must not be null");
Assert.noNullElements(keys, "Keys must not contain null elements");
return connection.invoke().just(RedisKeyAsyncCommands::exists, keys);
}
@Override
public Long del(byte[]... keys) {
Assert.notNull(keys, "Keys must not be null");
Assert.noNullElements(keys, "Keys must not contain null elements");
return connection.invoke().just(RedisKeyAsyncCommands::del, keys);
}
@Override
public Long unlink(byte[]... keys) {
Assert.notNull(keys, "Keys must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::unlink, keys);
}
@Override
public DataType type(byte[] key) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().from(RedisKeyAsyncCommands::type, key).get(LettuceConverters.stringToDataType());
}
@Override
public Long touch(byte[]... keys) {
Assert.notNull(keys, "Keys must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::touch, keys);
}
@Override
public Set<byte[]> keys(byte[] pattern) {
Assert.notNull(pattern, "Pattern must not be null");
return connection.invoke().fromMany(RedisKeyAsyncCommands::keys, pattern).toSet();
}
/**
* @since 1.4
* @return
*/
public Cursor<byte[]> scan() {
return scan(ScanOptions.NONE);
}
@Override
public Cursor<byte[]> scan(ScanOptions options) {
return doScan(options != null ? options : ScanOptions.NONE);
}
/**
* @since 1.4
* @param options
* @return
*/
private Cursor<byte[]> doScan(ScanOptions options) {
return new LettuceScanCursor<byte[]>(options) {
@Override
protected LettuceScanIteration<byte[]> doScan(ScanCursor cursor, ScanOptions options) {
if (connection.isQueueing() || connection.isPipelined()) {
throw new InvalidDataAccessApiUsageException("'SCAN' cannot be called in pipeline / transaction mode");
}
ScanArgs scanArgs = LettuceConverters.toScanArgs(options);
KeyScanCursor<byte[]> keyScanCursor = connection.invoke().just(RedisKeyAsyncCommands::scan, cursor, scanArgs);
List<byte[]> keys = keyScanCursor.getKeys();
return new LettuceScanIteration<>(keyScanCursor, keys);
}
@Override
protected void doClose() {
LettuceKeyCommands.this.connection.close();
}
}.open();
}
@Override
public byte[] randomKey() {
return connection.invoke().just(RedisKeyAsyncCommands::randomkey);
}
@Override
public void rename(byte[] oldKey, byte[] newKey) {
Assert.notNull(oldKey, "Old key must not be null");
Assert.notNull(newKey, "New key must not be null");
connection.invokeStatus().just(RedisKeyAsyncCommands::rename, oldKey, newKey);
}
@Override
public Boolean renameNX(byte[] sourceKey, byte[] targetKey) {
Assert.notNull(sourceKey, "Source key must not be null");
Assert.notNull(targetKey, "Target key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::renamenx, sourceKey, targetKey);
}
@Override
public Boolean expire(byte[] key, long seconds) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::expire, key, seconds);
}
@Override
public Boolean pExpire(byte[] key, long millis) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::pexpire, key, millis);
}
@Override
public Boolean expireAt(byte[] key, long unixTime) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::expireat, key, unixTime);
}
@Override
public Boolean pExpireAt(byte[] key, long unixTimeInMillis) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::pexpireat, key, unixTimeInMillis);
}
@Override
public Boolean persist(byte[] key) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::persist, key);
}
@Override
public Boolean move(byte[] key, int dbIndex) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::move, key, dbIndex);
}
@Override
public Long ttl(byte[] key) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::ttl, key);
}
@Override
public Long ttl(byte[] key, TimeUnit timeUnit) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().from(RedisKeyAsyncCommands::ttl, key).get(Converters.secondsToTimeUnit(timeUnit));
}
@Override
public Long pTtl(byte[] key) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::pttl, key);
}
@Override
public Long pTtl(byte[] key, TimeUnit timeUnit) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().from(RedisKeyAsyncCommands::pttl, key).get(Converters.millisecondsToTimeUnit(timeUnit));
}
@Override
public List<byte[]> sort(byte[] key, SortParameters params) {
Assert.notNull(key, "Key must not be null");
SortArgs args = LettuceConverters.toSortArgs(params);
return connection.invoke().just(RedisKeyAsyncCommands::sort, key, args);
}
@Override
public Long sort(byte[] key, SortParameters params, byte[] sortKey) {
Assert.notNull(key, "Key must not be null");
SortArgs args = LettuceConverters.toSortArgs(params);
return connection.invoke().just(RedisKeyAsyncCommands::sortStore, key, args, sortKey);
}
@Override
public byte[] dump(byte[] key) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::dump, key);
}
@Override
public void restore(byte[] key, long ttlInMillis, byte[] serializedValue, boolean replace) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(serializedValue, "Serialized value must not be null");
RestoreArgs restoreArgs = RestoreArgs.Builder.ttl(ttlInMillis).replace(replace);
connection.invokeStatus().just(RedisKeyAsyncCommands::restore, key, serializedValue, restoreArgs);
}
@Nullable
@Override
public ValueEncoding encodingOf(byte[] key) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().from(RedisKeyAsyncCommands::objectEncoding, key).orElse(ValueEncoding::of,
RedisValueEncoding.VACANT);
}
@Nullable
@Override
public Duration idletime(byte[] key) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().from(RedisKeyAsyncCommands::objectIdletime, key).get(Converters::secondsToDuration);
}
@Nullable
@Override
public Long refcount(byte[] key) {
Assert.notNull(key, "Key must not be null");
return connection.invoke().just(RedisKeyAsyncCommands::objectRefcount, key);
}
}
相关信息
相关文章
spring-data-redis ClusterConnectionProvider 源码
spring-data-redis DefaultLettuceClientConfiguration 源码
spring-data-redis DefaultLettucePoolingClientConfiguration 源码
spring-data-redis LettuceByteBufferPubSubListenerWrapper 源码
spring-data-redis LettuceClientConfiguration 源码
spring-data-redis LettuceClusterConnection 源码
spring-data-redis LettuceClusterGeoCommands 源码
spring-data-redis LettuceClusterHashCommands 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦