- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用的是 spring 4,我为缓存创建了以下类以避免连接
package com.pu.services;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
@Component
@Scope(BeanDefinition.SCOPE_SINGLETON)
public class CacheSRV {
private Map<Long, String> countriesMap = new ConcurrentHashMap<Long, String>();
private Map<Long, String> provinceMap = new ConcurrentHashMap<Long, String>();
private Map<Long, String> divisionMap = new ConcurrentHashMap<Long, String>();
private Map<Long, String> districtMap = new ConcurrentHashMap<Long, String>();
private Map<Long, String> cityMap = new ConcurrentHashMap<Long, String>();
private Map<Long, String> zoneMap = new ConcurrentHashMap<Long, String>();
public Map<Long, String> getCountriesMap() {
return countriesMap;
}
public void setCountriesMap(Map<Long, String> countriesMap) {
this.countriesMap = countriesMap;
}
public Map<Long, String> getProvinceMap() {
return provinceMap;
}
public void setProvinceMap(Map<Long, String> provinceMap) {
this.provinceMap = provinceMap;
}
public Map<Long, String> getDivisionMap() {
return divisionMap;
}
public void setDivisionMap(Map<Long, String> divisionMap) {
this.divisionMap = divisionMap;
}
public Map<Long, String> getDistrictMap() {
return districtMap;
}
public void setDistrictMap(Map<Long, String> districtMap) {
this.districtMap = districtMap;
}
public Map<Long, String> getCityMap() {
return cityMap;
}
public void setCityMap(Map<Long, String> cityMap) {
this.cityMap = cityMap;
}
public Map<Long, String> getZoneMap() {
return zoneMap;
}
public void setZoneMap(Map<Long, String> zoneMap) {
this.zoneMap = zoneMap;
}
}
当我获得值时,它会迭代所有映射以找出该值。假设,我得到一个学生列表,学生列表大小为 100,世界上有 195 个国家。所以,这意味着每次迭代,我需要迭代 195 个国家才能找出属于学生的国家。这是性能开销吗?如果是,如何克服?
或者我最好使用 join
Select * from Student ST
INNER JOIN COUNTRY C ON C.countryid = st.countryid
INNER JOIN Province P ON P.provinceid = st.provinceid
INNER JOIN Division D ON D.divisionid = st.divisionid
INNER JOIN District DS ON DS.districtid = st.districtid
INNER JOIN City CT ON CT.cityid = st.cityid
INNER JOIN Zone ZE ON ZE.zoneid = st.zoneid
最佳答案
there are 195 countries in the world. so , its means for every iteration , I need to iterate 195 countries to find out the country belong to student.
什么?您不想使用 map
吗?
countriesMap.get(student.countryId)
你就完成了。这是一个恒定时间操作(除了罕见的过度碰撞问题)。
虽然数据库非常擅长连接,但使用 map 肯定会更快。然而,它还有其他缺点:
对于您的情况来说,两者都应该没有问题。是否值得这样做的问题仍然存在。
关于java - ConcurrentHashMap 作为缓存性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47404584/
我最初构造了一系列嵌套的 ConcurrentHashMaps private final ConcurrentHashMap allInOne = new ConcurrentHashMap
我正在尝试使用 ConcurrentHashMap 初始化 ConcurrentHashMap private final ConcurrentHashMap > myMulitiConcurrent
为了提高工作效率,我尝试将数据保存在一个动态容器中。 我在 class 中初始化它与 private final ConcurrentHashMap allInOne = new Concur
我正在创建基于 Socket 的服务器-客户端预订服务,并且遇到有关将由多个线程访问的类的问题,是否需要扩展 ConcurrentHashMap 或创建变量 ConcurrentHashMap 是否足
从 Javadoc 我知道 ConcurrentHashMap.replace 是原子的,但是 ConcurrentHashMap.put 呢?我看到它们在源代码中的实现方式不同,但我无法弄清楚它们的
是 ConcurrentHashMap.get() 保证看到以前的ConcurrentHashMap.put()通过不同的线程?我的期望是,阅读 JavaDocs 似乎表明了这一点,但我 99% 确信
使用 ConcurrentHashMap,我发现 computeIfAbsent 比 putIfAbsent 慢两倍。这里是简单的测试: import java.util.ArrayList; imp
我有一个以下格式的 ConcurrentHashMap: ConcurrentHashMap> 现在在此 map 中,我想删除数组列表中的特定值。任何人都可以指导这一点。 编辑1:我有一张 map >
为什么 ConcurrentHashMap.Segment 和 ConcurrentHashMap.HashEntry 类是静态的?为什么要这样设计? 最佳答案 基本上所有不需要使用其封闭类属性的内部
在 ConcurrentHashMap 中通过键递增并发计数器时,使用常规 Int 作为值是否安全,还是我们必须使用 AtomicInteger?例如考虑以下两个实现 ConcurrentHashMa
我对java中的并发数据结构有疑问,特别是: 1) ConcurrentHashMap 2) HashMap 3) ConcurrentHashMap 如果我理解正确的话: 1) 读/写是线程安全的,
我正在尝试查看实际的 Java 文档,描述传递给 ConcurrentHashMap.computeIfAbsent 和 ConcurrentHashMap.computeIfPresent< 时可以
我有一个名为 SerializableL 的接口(interface)由 3 个不同的类实现: 产品 横幅 标签 我开始重构,想用多个方法调用替换多个段落。 public void load(Conc
一 JDK 中的 ConcurrentHashMap 在 JDK 8以前,HashMap 是基于数组 + 链表来实现的。整体上看,HashMap 是一个数组,但每个数组元素又是一张链表。 当向 Has
我想知道当我们在调整大小时尝试读取 ConcurrentHashMap 时可能发生的情况。 我知道在读取期间,第一次尝试总是不同步的。在第二次尝试中,它将尝试获取锁并重试。 但是,如果它在调整大小时发
在一个应用程序中,1 个线程负责不断更新映射,主线程定期读取映射,使用 ConcurrentHashmap 是否足够?或者我应该明确地锁定同步块(synchronized block)中的操作吗?任何
介绍 ConcurrentHashMap 技术是为了解决问题而生的,ConcurrentHashMap 解决了多个线程同时操作一个 HashMap 时,可能出现的内部问题。当多个线程同时操作一
我有一个由多个线程访问的键值映射: private final ConcurrentMap key_vval_map = new ConcurrentHashMap(); 我的自定义 get() 和
谁能告诉我这段代码出了什么问题?我要拔头发了! 如果我使用 HashMap 而不是 ConcurrentHashMap 则没有任何问题。代码使用JDK 5.0编译 public class MapTe
来自 ConcurrentHashMap 的源码 /** 171 * Number of unsynchronized retries in size and containsVal
我是一名优秀的程序员,十分优秀!