有一个应用程序Application1正在发出我们在Prod中使用的insert语句
INSERT INTO Table1
(SELECT FROM Table2
WHERE conditions are true)
还有另一个对Table2执行select查询的应用程序Apllication2
SELECT FROM Table2
WHERE conditions are true
with ur
现在,每当insert查询运行时,第二个查询运行得非常慢,有时读取超时。
我试图找出Table2是否因为是insert语句的一部分而被锁定,但我找不
我有下面的JedisCluster进程,我想让线程安全-
public class Cluster {
private List<String> hostPorts;
private Map<String, JedisPool> hostPool =
new ConcurrentHashMap<String, JedisPool>();
public add(String node) {
hostPorts.add(node);
hostPool.add(node, creat