Java實現的網格計算框架 GridGain 3.5 發布
GridGain 3.5 版本主要亮點:
- 顯著提升了整個產品的性能
- 移除之前聲明為廢棄的 APIs
- GridGain Visor 的改進和 bug 修復
- 增強了 GridProjection 接口
- 允許通過編程批量啟動遠程節點
- Customizable closure-based MapReduce
- Enhancements in affinity and co-location
- Data Grid 的清除策略的 bug 修復
- Swap API 的顯著改進和性能的提升
下載 GridGain 3.5
GridGain是一個開源的網格計算框架,專著于提供平行計算能力,能夠與JBoss和Spring相集成。
GridGain 是基于Java 5并行計算模型,使用起來很方便:
Grid grid = GridFactory.getGrid();// Get cloud-wide thread pool instance. ExecutorService pool = grid.newGridServiceExecutor();
// Run callable or runnables on the cloud... pool.submit(new Callable() { // Task that will be executed on some thread // somewhere on the cloud (and you can control // precisely where and how...) public void call() { ... } });</pre>項目地址: http://www.gridgain.com/
本文由用戶 fmms 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!