python - 分布式实现一个helloworld
ringa_lee
ringa_lee 2017-04-17 14:42:59
0
1
742

分布式到底是个什么东西,到底怎样实现分布式,看了网上很多博客,但是一直没有get到点。至今对分布式仍然完全不懂

我就简单的想,能不能用分布式的架构搭建一个网站,这网站只需要显示hello world即可。
不知道这样的demo实现起来困难否?

ringa_lee
ringa_lee

ringa_lee

reply all(1)
迷茫

Distributed is compared to centralized. In centralized, all storage and computing are done on fixed servers (often a few, connected to the same switch), while When a distributed system provides services, users do not need to care about which servers are providing them, because there are several physically or geographically isolated members in the system that can provide the same service. For example, weblogic server cluster implements a unified external interface through CLB. Users only need to access CLB and do not need to care about the specific service status of each server in the cluster. In addition, in a distributed system such as Hadoop, multiple nodes can collaborate to complete a job, but they are independent of each other and interact through the network. Of course, this involves many technologies, such as health checking, load balancing, communication methods, task optimization, etc. To implement an excellent distributed system still requires careful consideration, and the design needs to be customized according to specific business needs.

However, if you want to build a simple distributed website, you can use J2EE or ASP.NET, both of which support the distributed model.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!