鱼馆幽话1全文在线阅读:什么是胖客户端和瘦客户端?什么是哑终端?

来源:百度文库 编辑:偶看新闻 时间:2024/04/25 09:29:32

什么是胖客户端和瘦客户端?什么是哑终端?


这个主要不是根据服务器和客户机的处理能力来分的,而是根据实际应用的分布来划分的。 
如果你要实现的功能大部分在服务器上完成,客户机上很少,则是胖服务器/瘦客户机。 
当然,既然大部分功能都在服务器上完成,服务器的处理能力就必须强,相应的,客户机的处理能力就没有必要那么强。 

这也是现在的发展潮流,服务器来完成信息的存储和处理,客户机只是一个交互的工具。

从网络的方面来说,如果服务器的功能较弱而工作站的功能较强,则称胖客户瘦服务,反之亦然。

Fat client:
In a client/server architecture, a client that performs t
he bulk of the data processing operations. The data itself is stored on the server. See thin client for contrast. 
Although the term usually refers to software, it can also apply to a network computer that has relatively strong processing abilities

Thin client:
(thin klī′&nt) In client/server applications, a client designed to be especially small so that the bulk of the data processing occurs on the server. 
Although the term thin client usually refers to software, it is increasingly used for computers, such as network computers and Net PCs, that are designed to serve as the clients for client/server architectures. A thin client is a network computer without a hard disk drive, whereas a fat client includes a disk drive

哑终端:就是一个屏幕,一个数据接受设备,从前置机上接受屏幕?直接对前置机的数据库进行操作。

Dumb terminal(哑终端)

一种不含内部微处理器的终端。典型的哑终端只能显示字符及数字和响应简单的控制码。 

===========================================================================

超级终端是一种应用程序,可通过调制解调器、虚拟数据线或以太网连接,连接到其他计算机、远程登录站点。

超级终端是一个通用的串行交互软件,很多嵌入式应用的系统有与之交换的相应程序,通过这些程序,可以通过超级终端与嵌入式系统交互,使超级终端成为嵌入式系统的“显示器”。

超级终端的原理并不复杂,它是将用户输入随时发向串口(采用TCP协议时是发往网口,这里只说串口的情况),但并不显示输入。它显示的是从串口接收到的字符。所以,嵌入式系统的相应程序应该完成的任务便是:

1、将自己的启动信息、过程信息主动发到运行有超级终端的主机;

2、将接收到的字符返回到主机,同时发送需要显示的字符(如命令的响应等)到主机。