|
|
|
|
|
by weaksauce
918 days ago
|
|
> Idempotency tackles the issue of handling multiple requests for doing the same thing, isn't it? yeah... there should be no extra side effect if you call something more than once on it with the same parameters. ie foo(x) is the same as foo(foo(x)) is the same as foo(foo(foo(x))) or in networking GET x is the same as GET x followed by a GET x etc... the GET request doesn't (*shouldn't) change anything. |
|