简体   繁体   English

聚类问题

[英]clustering problem

hi every body can any one tell me how to connect two computer which is not runnin the same os means how to connect a computer which running linux to a computer which is running windows ,or more technically how to make a hitrogenous cluster or cluster with diffrent hardware or different operating Systems. 嗨,每个人都可以告诉我如何连接两台不在同一操作系统上运行的计算机,这意味着如何将一台运行linux的计算机连接到运行Windows的计算机,或者从技术上讲如何使一个多源集群或不同集群硬件或其他操作系统。 if any body know any thing about it please tell me i 'll be thankfull to you for this . 如果有人对此有任何了解,请告诉我,我将对此表示感谢。

Two fundamental requirements here: 这里有两个基本要求:

  1. Some platform-independent communication mechanism 一些与平台无关的通信机制
  2. The ability to create the processing logic on each platform 在每个平台上创建处理逻辑的能力

There's a long history of folks devising communication mechanisms, proprietory and open. 人们设计交流机制,所有权和开放性的历史由来已久。 These days Web Services are so widely available I would start with them. 如今,Web服务是如此广泛,我将从它们开始。

For implementation, it's clearly possible to write an implementation on each platform, in whatever language feels best on that platform, C# here, C++ there. 为了实现,很显然可以在每个平台上编写实现,无论哪种语言在该平台上感觉最好,这里的C#,那里的C ++。 But that's really making life hard, so it's by far best to write portable implementations. 但这确实使生活变得艰难,因此,迄今为止最好编写可移植的实现。 That's technically possible in many languages, C, PHP, Ruby etc. 从技术上讲,这在许多语言中都是可行的,例如C,PHP,Ruby等

My current skill-set is Java, so I'd be using that. 我当前的技能是Java,因此我会使用它。 Java web Service frameworks are pretty solid so that would get the job done. Java Web Service框架非常可靠,因此可以完成工作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM