/* * Copyright 2011-2017 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 * * 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.springframework.data.redis.core; import java.util.concurrent.TimeUnit; /** * Value (or String in Redis terminology) operations bound to a certain key. * * @author Costin Leau * @author Mark Paluch */ public interface BoundValueOperations<K, V> extends BoundKeyOperations<K> { /** * Set {@code value} for the bound key. * * @param value * @see <a href="http://redis.io/commands/set">Redis Documentation: SET</a> */ void set(V value); /** * Set the {@code value} and expiration {@code timeout} for the bound key. * * @param value * @param timeout * @param unit must not be {@literal null}. * @see <a href="http://redis.io/commands/setex">Redis Documentation: SETEX</a> */ void set(V value, long timeout, TimeUnit unit); /** * Set the bound key to hold the string {@code value} if the bound key is absent. * * @param value * @see <a href="http://redis.io/commands/setnx">Redis Documentation: SETNX</a> */ Boolean setIfAbsent(V value); /** * Get the value of the bound key. * * @see <a href="http://redis.io/commands/get">Redis Documentation: GET</a> */ V get(); /** * Set {@code value} of the bound key and return its old value. * * @see <a href="http://redis.io/commands/getset">Redis Documentation: GETSET</a> */ V getAndSet(V value); /** * Increment an integer value stored as string value under the bound key by {@code delta}. * * @param delta * @see <a href="http://redis.io/commands/incr">Redis Documentation: INCR</a> */ Long increment(long delta); /** * Increment a floating point number value stored as string value under the bound key by {@code delta}. * * @param delta * @see <a href="http://redis.io/commands/incrbyfloar">Redis Documentation: INCRBYFLOAT</a> */ Double increment(double delta); /** * Append a {@code value} to the bound key. * * @param value * @see <a href="http://redis.io/commands/append">Redis Documentation: APPEND</a> */ Integer append(String value); /** * Get a substring of value of the bound key between {@code begin} and {@code end}. * * @param start * @param end * @see <a href="http://redis.io/commands/getrange">Redis Documentation: GETRANGE</a> */ String get(long start, long end); /** * Overwrite parts of the bound key starting at the specified {@code offset} with given {@code value}. * * @param value * @param offset * @see <a href="http://redis.io/commands/setrange">Redis Documentation: SETRANGE</a> */ void set(V value, long offset); /** * Get the length of the value stored at the bound key. * * @see <a href="http://redis.io/commands/strlen">Redis Documentation: STRLEN</a> */ Long size(); RedisOperations<K, V> getOperations(); }