org.springframework.data.redis.connection.RedisConnection.restore()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(3.7k)|赞(0)|评价(0)|浏览(143)

本文整理了Java中org.springframework.data.redis.connection.RedisConnection.restore方法的一些代码示例,展示了RedisConnection.restore的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。RedisConnection.restore方法的具体详情如下:
包路径:org.springframework.data.redis.connection.RedisConnection
类名称:RedisConnection
方法名:restore

RedisConnection.restore介绍

暂无

代码示例

代码示例来源:origin: spring-projects/spring-data-redis

@Override
public void restore(byte[] key, long ttlInMillis, byte[] serializedValue, boolean replace) {
  delegate.restore(key, ttlInMillis, serializedValue, replace);
}

代码示例来源:origin: spring-projects/spring-data-redis

/**
 * Executes the Redis restore command. The value passed in should be the exact serialized data returned from
 * {@link #dump(Object)}, since Redis uses a non-standard serialization mechanism.
 *
 * @param key The key to restore
 * @param value The value to restore, as returned by {@link #dump(Object)}
 * @param timeToLive An expiration for the restored key, or 0 for no expiration
 * @param unit The time unit for timeToLive
 * @param replace use {@literal true} to replace a potentially existing value instead of erroring.
 * @throws RedisSystemException if the key you are attempting to restore already exists and {@code replace} is set to
 *           {@literal false}.
 */
@Override
public void restore(K key, final byte[] value, long timeToLive, TimeUnit unit, boolean replace) {
  byte[] rawKey = rawKey(key);
  long rawTimeout = TimeoutUtils.toMillis(timeToLive, unit);
  execute(connection -> {
    connection.restore(rawKey, rawTimeout, value, replace);
    return null;
  }, true);
}

代码示例来源:origin: 1991wangliang/tx-lcn

@Override
public void restore(byte[] key, long ttlInMillis, byte[] serializedValue) {
  redisConnection.restore(key, ttlInMillis, serializedValue);
}

代码示例来源:origin: org.springframework.data/spring-data-redis

@Override
public void restore(byte[] key, long ttlInMillis, byte[] serializedValue, boolean replace) {
  delegate.restore(key, ttlInMillis, serializedValue, replace);
}

代码示例来源:origin: apache/servicemix-bundles

@Override
public void restore(byte[] key, long ttlInMillis, byte[] serializedValue, boolean replace) {
  delegate.restore(key, ttlInMillis, serializedValue, replace);
}

代码示例来源:origin: org.springframework.data/spring-data-redis

/**
 * Executes the Redis restore command. The value passed in should be the exact serialized data returned from
 * {@link #dump(Object)}, since Redis uses a non-standard serialization mechanism.
 *
 * @param key The key to restore
 * @param value The value to restore, as returned by {@link #dump(Object)}
 * @param timeToLive An expiration for the restored key, or 0 for no expiration
 * @param unit The time unit for timeToLive
 * @param replace use {@literal true} to replace a potentially existing value instead of erroring.
 * @throws RedisSystemException if the key you are attempting to restore already exists and {@code replace} is set to
 *           {@literal false}.
 */
@Override
public void restore(K key, final byte[] value, long timeToLive, TimeUnit unit, boolean replace) {
  byte[] rawKey = rawKey(key);
  long rawTimeout = TimeoutUtils.toMillis(timeToLive, unit);
  execute(connection -> {
    connection.restore(rawKey, rawTimeout, value, replace);
    return null;
  }, true);
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Executes the Redis restore command. The value passed in should be the exact serialized data returned from
 * {@link #dump(Object)}, since Redis uses a non-standard serialization mechanism.
 *
 * @param key The key to restore
 * @param value The value to restore, as returned by {@link #dump(Object)}
 * @param timeToLive An expiration for the restored key, or 0 for no expiration
 * @param unit The time unit for timeToLive
 * @param replace use {@literal true} to replace a potentially existing value instead of erroring.
 * @throws RedisSystemException if the key you are attempting to restore already exists and {@code replace} is set to
 *           {@literal false}.
 */
@Override
public void restore(K key, final byte[] value, long timeToLive, TimeUnit unit, boolean replace) {
  byte[] rawKey = rawKey(key);
  long rawTimeout = TimeoutUtils.toMillis(timeToLive, unit);
  execute(connection -> {
    connection.restore(rawKey, rawTimeout, value, replace);
    return null;
  }, true);
}

相关文章

微信公众号

最新文章

更多

RedisConnection类方法