Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
65 views

Defining Idempotence

So "idempotence" can be defined as: An action, that if performed N times has the same effect as performing the action only once. Got it, easy enough. My question is about the subtlety of this ...
4
votes
3answers
394 views

Terminology for a deterministic function with no side-effects?

I need the proper terminology for a specific type of function. Suppose you write a function in your SQL database, whose inputs and outputs are contained within the scope of a database transaction. ...
4
votes
7answers
1k views

How can I prevent database being written to again when the browser does a reload/back?

I'm putting together a small web app that writes to a database (Perl CGI & MySQL). The CGI script takes some info from a form and writes it to a database. I notice, however, that if I hit ...
2
votes
4answers
255 views

RESTful idempotence

I'm designing a RESTful web service utilizing ROA(Resource oriented architecture). I'm trying to work out an efficient way to guarantee idempotence for PUT requests that create new resources in cases ...
0
votes
2answers
479 views

How to ensure message idempotency with multiple competing consumers?

I have multiple distributed competing consumers each pulling messages off the same (transactional) queue. I want to implement each consumer as an Idempotent Receiver so I never process the same ...