mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 08:13:44 +08:00 
			
		
		
		
	redis获取map属性bug修复。
This commit is contained in:
		@@ -205,9 +205,9 @@ public class RedisCache {
 | 
			
		||||
	 * @param hKeys Hash键集合
 | 
			
		||||
	 * @return Hash对象集合
 | 
			
		||||
	 */
 | 
			
		||||
	public <T> List<T> getMultiCacheMapValue(final String key, final Collection<Object> hKeys) {
 | 
			
		||||
		RListMultimap rListMultimap = redissonClient.getListMultimap(key);
 | 
			
		||||
		return rListMultimap.getAll(hKeys);
 | 
			
		||||
	public <K,V> Map<K,V> getMultiCacheMapValue(final String key, final Set<K> hKeys) {
 | 
			
		||||
		RMap<K,V>  rMap = redissonClient.getMap(key);
 | 
			
		||||
		return rMap.getAll(hKeys);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/**
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user