Example usage for org.springframework.data.redis.core HashOperations values

List of usage examples for org.springframework.data.redis.core HashOperations values

Introduction

In this page you can find the example usage for org.springframework.data.redis.core HashOperations values.

Prototype

List<HV> values(H key);

Source Link

Document

Get entry set (values) of hash at key .

Usage

From source file:com.easarrive.datasource.redis.etago.AbstractDaoByRedisTemplate.java

public List<V> hashValues(K key) {
    HashOperations<K, F, V> hashOperations = redisTemplate.opsForHash();
    List<V> valueList = hashOperations.values(key);
    return valueList;
}