Disqus
Front-End Tech Lead & DevOps
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 request and response.
Source: Wikipedia
Method | Safe | Idempotent | Cacheable |
---|---|---|---|
GET | Yes | Yes | Yes |
HEAD | Yes | Yes | Yes |
POST | No | No | Yes |
PUT | No | Yes | No |
DELETE | No | Yes | No |
CONNECT | No | No | No |
OPTIONS | Yes | Yes | No |
TRACE | Yes | Yes | No |
PATCH | No | No | Yes |