HessianD
- 授权协议: 未知
- 开发语言: D语言
- 操作系统: 未知
- 软件首页: http://www.dsource.org/projects/hessiand
软件介绍
HessianD 是一个用 D 语言实现 Hessian 协议的库。
示例代码:
import hessian.HttpProxy :
HttpProxy;
import tango.io.Stdout;
void main ()
{
// create a Http proxy on the given Http endpoint so we can post our Hessian stream
scope service = new HttpProxy(" http://localhost:5667/test/hessiantest");
// create a proxy method that will do the Hessian serialization and deserialization
auto echo = &service.proxy!(api.echo);
// we'll perform the remote call and display the result
Stdout ("Remote result: ") ( echo("Hello World!") ).newline.flush;
}
多处理器编程的艺术
(美)Maurice Herlihy、(美)Nir Shavit / 机械工业出版社 / 2013-2 / 79.00元
工业界称为多核的多处理器机器正迅速地渗入计算的各个领域。多处理器编程要求理解新型计算原理、算法及编程工具,至今很少有人能够精通这门编程艺术。 现今,大多数工程技术人员都是通过艰辛的反复实践、求助有经验的朋友来学习多处理器编程技巧。这本最新的权威著作致力于改变这种状况,作者全面阐述了多处理器编程的指导原则,介绍了编制高效的多处理器程序所必备的算法技术。了解本书所涵盖的多处理器编程关键问题将使在......一起来看看 《多处理器编程的艺术》 这本书的介绍吧!
