Example usage for org.springframework.data.redis.support.collections DefaultRedisMap DefaultRedisMap

List of usage examples for org.springframework.data.redis.support.collections DefaultRedisMap DefaultRedisMap

Introduction

In this page you can find the example usage for org.springframework.data.redis.support.collections DefaultRedisMap DefaultRedisMap.

Prototype

public DefaultRedisMap(String key, RedisOperations<String, ?> operations) 

Source Link

Document

Constructs a new DefaultRedisMap instance.

Usage

From source file:com.afousan.service.RetwisRepository.java

private RedisMap<String, String> post(String pid) {
    return new DefaultRedisMap<String, String>(KeyUtils.post(pid), template);
}