|
|
|
|
|
by rmbyrro
928 days ago
|
|
> getting it to do a second thing midway before finishing doing the first thing I'm not sure this is the kind of failure idempotency is design to tackle. 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.