与无状态协议相反?

发布于 2024-11-03 04:35:15 字数 89 浏览 3 评论 0原文

我想知道“无状态协议”的反面是什么。例如,鉴于 HTTP 是无状态的,那么像 FTP 这样的协议是相反的/维护状态的协议,我的假设是否正确?

谢谢。

I would like to know what the opposite of a 'stateless protocol' is. Am I correct in assuming that, seeing as HTTP is stateless, for example, then a protocol such as FTP is the opposite/one that maintains state?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小草泠泠 2024-11-10 04:35:15

有无状态协议(如 http)和有状态协议(如 ftp、telnet...)。

根据维基百科

在计算中,无状态协议是一种通信协议,它将每个请求视为与任何先前请求无关的独立事务,因此通信由独立的请求和响应对组成。无状态协议不要求服务器在多个请求期间保留每个通信伙伴的会话信息或状态。

根据这篇文章 - 有状态协议:

客户端连接到服务器,通过该连接进行一系列操作,然后断开连接。然后服务器可以将所有请求关联在一起,并知道它们都来自同一个用户。

There are stateless protocols (like http) and stateful protocols (like ftp, telnet, ...).

According to wikipedia :

In computing, a stateless protocol is a communications protocol that treats each request as an independent transaction that is unrelated to any previous request so that the communication consists of independent pairs of requests and responses. A stateless protocol does not require the server to retain session information or status about each communications partner for the duration of multiple requests.

According to this article - Stateful protocol :

The client connects to the server, conducts a series of operations via that conneciton, and then disconnects.Then server can associate all of the requests together and knows that thy all came from the same user.

醉梦枕江山 2024-11-10 04:35:15

有状态协议是一种旨在在每个步骤中保持状态的协议,这意味着有状态服务器知道以前的请求。
无状态协议不保留状态。每个请求都是一个新请求。
状态可以构建到无状态协议中。
例如HTTP是一个无状态协议,但由于需要可以使用cookie、会话数据等来保持状态

Statefull protocol is a protocol designed to keep state in each step, meaning that a statefull server is aware of previous requests.
Stateless protocol do not keep state. Each request is a like it is a new request.
State can be build into stateless protocols.
E.g. HTTP is a stateless protocol, but due to needs state can be kept using cookies, session data etc

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文