Merge remote-tracking branch 'origin/dev' into dev

feature/model
疯狂的狮子li 3 years ago
commit d6ca9e548d

@ -205,9 +205,9 @@ public class RedisCache {
* @param hKeys Hash * @param hKeys Hash
* @return Hash * @return Hash
*/ */
public <T> List<T> getMultiCacheMapValue(final String key, final Collection<Object> hKeys) { public <K,V> Map<K,V> getMultiCacheMapValue(final String key, final Set<K> hKeys) {
RListMultimap rListMultimap = redissonClient.getListMultimap(key); RMap<K,V> rMap = redissonClient.getMap(key);
return rListMultimap.getAll(hKeys); return rMap.getAll(hKeys);
} }
/** /**

Loading…
Cancel
Save