【发布时间】:2017-09-03 08:28:02
【问题描述】:
我正在做互动教程 al http://try.redis.io。在读取 spring 数据 redis 时,我没有遇到过该方法,但遇到了一个 get(没有“all”)
/**
* Get value for given {@code hashKey} from hash at {@code key}.
*
* @param key must not be {@literal null}.
* @param hashKey must not be {@literal null}.
* @return
*/
HV get(H key, Object hashKey);
我想知道它们是否相同?如果它们相同,是否没有像 hget 这样的方法(只能获取一个值)?
【问题讨论】:
标签: hash redis spring-data spring-data-redis