Brain Dump

REST

Tags
sys-design

An approach for creating RPC interfaces based on statelessness and clean permalinks.

Statelessness means that requests are performed in isolation. Each requests carries all the information needed to perform that action, the server doesn't have to maintain some sort of memory about earlier requests.

See Debunking the Myths of RPC & REST.