- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Scala 中,并发和非并发 Set 具有完全相同的类型:
import collection.JavaConverters._
// A regular Set in Scala, not concurrent.
val regularSet: mutable.Set[Int] = mutable.Set[Int]()
// A concurrent set. It has the same type as a regular set, but underneath, it is actually concurrent. In my opinion, this is a flaw in the type system for Scala collections
val concurrentSet: mutable.Set[Int] = java.util.concurrent.ConcurrentHashMap.newKeySet[Int]().asScala
我想要一种方法来实际测试一个集合是否并发。
最佳答案
回答
您可以通过创建许多尝试从共享 mutable.Set
中添加/删除相同元素的线程来凭经验测试它
import java.util.concurrent.{Callable, ExecutorService, Executors}
import scala.collection.mutable
def testSet(set: mutable.Set[Int]) {
val e: ExecutorService = Executors.newFixedThreadPool(5)
val tasks = for (i <- 0 to 50000) yield {
e.submit(new Callable[Unit]() {
override def call() {
for (j <- 0 to 10) {
set.add(i + j)
// This will throw a Null Pointer Exception for the non-concurrent version
// This is because it is trying to remove something that another thread already removed.
set.remove(i + j)
}
}
})
}
for (result <- tasks) result.get()
e.shutdown()
}
// Can't check the type! They have the same type.
val regularSet: mutable.Set[Int] = mutable.Set[Int]()
val concurrentSet: mutable.Set[Int] = java.util.concurrent.ConcurrentHashMap.newKeySet[Int]().asScala
testSet(concurrentSet) // Success!
testSet(regularSet) // FAILS! Almost always throws a NullPointerException on my system.
限制
运行测试将需要系统资源,例如线程和 CPU 时间。在运行时在生产环境中运行它并不合适。
这不是演绎证明。由于竞争条件是随机的,因此测试将非并发对象分类为并发的可能性很小。但是,运行测试的时间更长会导致检测到非并发对象的概率接近确定性。
附加评论
理想情况下,会有一种方法可以使用反射和类型系统来查看底层对象是什么,并测试它是否是 ConcurrentHashMap
(我认为这是 Scala 的主要缺陷,因为一些运行多线程任务的函数不能有效阻止函数调用者传入非并发对象)。
但这至少提供了一种检验它的经验方法。
致谢
在 How can I test that ConcurrentHashMap is truly thread-safe? 中提出了类似的问题.我修改了它以使用 Sets:
推荐
我建议使用 concurrent.Map[T, Unit]
而不是 mutable.Set[T]
。原因是您将能够利用类型系统以 100% 的信心确保您的函数/类操作的对象实际上是并发的。
是的,您将失去 Set 语义,例如 .add(setMember)
方法。但你会获得安全。
如果您坚持使用并发 mutable.Set
,请考虑制作一个包装类容器,以防止意外初始化为非并发 mutable.Set
。
关于java - Scala:如何测试 mutable.Set 的并发性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56013503/
我正在研究 clojure 库,当时我注意到一个可变字段被注释为 ^:unsynchronized-mutable 。可变是可变的,但我不知道不同步部分意味着什么,所以我读了 docs ,其中包含:
对于 put和 get操作 OpenHashMap跑赢大盘HashMap约5次:https://gist.github.com/1423303 HashMap时是否有任何情况应该优先于 OpenHas
下面的代码打开一个 .txt 文件并计算词频。我正在看一本书,但我感到困惑: 我的问题在这里: filename := os.Args[1] frequencyForWord := map[strin
我正在尝试添加两个 BitSet对象在一起(改变其中之一)。这应该是位集的有效操作。但似乎唯一能做到这一点的操作是 ++= .查看源代码,这似乎并没有区别对待添加位集。 在 Scala 2.9.1 中
trait Output { fn write(&mut self, text: &str); } struct DummyOutput {} impl Output for DummyOut
我正在用函数改变字符串值(我知道这是非常不安全和危险的): public static void reverse(String s) { try { Field val = S
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: C++ 'mutable' keyword class student { mutable int r
在《Java并发实践》一书中,在谈到“锁定和可见性”时,作者说道: We can now give the other reason for the rule requiring all thread
我想知道如何在 C99 中基本上声明 (a const pointer to (a mutable pointer to (a const type)))。 假设我有这个调用站点: const uin
我在考c++,下面有一个奇怪的代码块,我看不懂。这里,i 是一个 int 而 code 是一个 char: [=,&i]()mutable { i++; code = 'b'; std::
编译: []{}; 这也是: []() mutable {}; 但是对于这段代码,编译器会向我抛出错误信息: [] mutable {}; ^~~~~~~ error: lambda requi
我编写了如下所示的映射,即我的 mutable.HashMap 实现。 class SampleMap() extends mutable.HashMap[String, (Any, BigInt)]
我理解事物的方式是“变量”一词指的是重新分配引用的能力。 “常量”意味着不能重新分配引用。本质上是 Java 中 final 与 not 的区别。 var something = new obj()
是否有一种优雅的方式来更新 Map 中已经存在的值? 这看起来太可怕了: val a = map.get ( something ) if ( a != null ) // case .. excus
我正在尝试从向量中删除元素(如果存在): use std::collections::HashMap; fn test(map: HashMap>, department: String, emplo
在尝试克隆可变集合时,我最初的方法是对 mutable.Cloneable 特征使用 clone() 方法。但是,这取决于创建引用副本的 java.Object.clone 实现,而不是深拷贝。通过测
在尝试克隆可变集合时,我最初的方法是对 mutable.Cloneable 特征使用 clone() 方法。但是,这取决于创建引用副本的 java.Object.clone 实现,而不是深拷贝。通过测
MultiMap 的 addBinding 似乎不保留绑定(bind)到同一键的值的插入顺序,因为它使用的底层机制是 HashSet。使用 MultiMap 保留插入顺序的惯用方法是什么? 最佳答案
当我尝试在可变 Map 中插入一个元素时,我希望这个元素插入到我的 Map 而不是返回 Map(如 PF,不可变对象(immutable对象) ecc ...)出于这个原因,我使用了可变集合,但在我的
我意识到结构是不可变的,改变结构是邪恶的,改变结构中值的正确方法是创建新实例。但是,我不清楚新实例与允许结构可变的内存和性能方面/问题。 假设我有结构, struct Vehicle { pu
我是一名优秀的程序员,十分优秀!