spring-data-redis (opsForHash) 和 hgetall 一样吗?
is spring-data-redis (opsForHash) get the same as hgetall?
我正在做互动教程 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 这样的方法(只获取一个值)?
我忘了我提出了这个问题。
是的,当你向redis查询一个键的数据时,你会带来所有相应的信息
我正在做互动教程 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 这样的方法(只获取一个值)?
我忘了我提出了这个问题。
是的,当你向redis查询一个键的数据时,你会带来所有相应的信息