Java 数据流编程 API?

发布于 2024-07-07 07:17:58 字数 338 浏览 7 评论 0原文

我正在寻找适用于 Java 的数据流/并发编程 API。
我知道有 DataRush,但它不是免费的。 我特别感兴趣的是多核数据处理,而不是分布式,这排除了 MapReduceHadoop
有什么想法吗?
谢谢, 罗洛

I am looking for a Dataflow / Concurrent Programming API for Java.
I know there's DataRush, but it's not free. What I'm interested in specifically is multicore data processing, and not distributed, which rules out MapReduce or Hadoop.
Any thoughts?
Thanks,
Rollo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

不甘平庸 2024-07-14 07:17:58

您可以尝试 gpars; 它显然在 Java 中实现了数据流变量和流,尽管它旨在为 Groovy 提供并发编程功能。

You might try gpars; it apparently has implementations of data flow variables and streams in Java even though it is geared towards providing concurrent programming goodies for Groovy.

不爱素颜 2024-07-14 07:17:58

可能会尝试即将推出的 fork/join 库,该库(希望)将作为 JSR 166y 更新的一部分出现在 Java 7 中。

项目主页面:
- http://gee.cs.oswego.edu/dl/concurrency -interest/index.html

指向许多关于它是什么的链接的指针:
- http://tech.puredanger.com/java7#jsr166

Might try the upcoming fork/join library which will (hopefully) be in Java 7 as part of the JSR 166y update.

Main project page:
- http://gee.cs.oswego.edu/dl/concurrency-interest/index.html

Pointers to lots of links about what it is:
- http://tech.puredanger.com/java7#jsr166

赴月观长安 2024-07-14 07:17:58

内置Java 并发 包满足您的需求吗? 这是一个非常好的包,内置 ThreadPools、CopyOnWriteCollections、Executors、Future。 我们用它来处理线程池中的大量数据。

Does the built in Java concurrent package meet your needs? It's a very nice package, built in ThreadPools, CopyOnWriteCollections, Executors, Future. We use it to process large volumns of data in thread pools.

罗罗贝儿 2024-07-14 07:17:58

https://github.com/rfqu/df4j 是简单但功能强大的数据流库。 如果缺少一些所需的功能,可以轻松添加。 它可以利用 java.concurrent.ExecutorService。

https://github.com/rfqu/df4j is simple but powerful dataflow library. If it lacks some desired features, they can be added easly. It can exploit java.concurrent.ExecutorService.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文