(RedisKey key)
| 239 | } |
| 240 | |
| 241 | public String getString(RedisKey key) { |
| 242 | return template.opsForValue().get(key); |
| 243 | } |
| 244 | |
| 245 | public <T> T get(RedisKey key, Class<T> clazz) { |
| 246 | String val = template.opsForValue().get(key); |
no test coverage detected