Tagged Questions
A function is said to be idempotent when it can be called multiple times without changing the result.
15
votes
4answers
177 views
Should IDisposable.Dispose() implementations be idempotent?
The Microsoft.NET framework provides the IDisposable interface which requires an implementation of void Dispose() method. It's purpose is to enable manual, or scope-based releasing of expensive ...
6
votes
1answer
734 views
What's the correct way to view idempotency in terms of HTTP DELETE?
I have spent a lot of time recently reading the HTTP 1.1 specification and relating it to REST. I have found that there are two interpretations of the HTTP DELETE method in regards to its ...
4
votes
3answers
103 views
Does unsubscribe link need to be idempotent? [closed]
So we have an unsubscribe link - this is by it's nature an HTTP GET.
The appropriate RFC says this should be idempotent but to my mind the user expectation will be that they are clicking a link to ...
3
votes
2answers
417 views
How to make write operation idempotent?
I'm reading an article about the recently released Gizzard sharding framework by twitter (http://engineering.twitter.com/2010/04/introducing-gizzard-framework-for.html). It mentions that all write ...
2
votes
2answers
95 views
What kind of DB operations are both “idempotent and commutative” at the same time?
I was researching Scala DB frameworks/wrappers, and came across Gizzard, from Twitter. While I was impressed at first, I cooled down when I read the restriction. They say that all DB operations you ...
2
votes
3answers
248 views
Are idempotent functions the same as pure functions?
I read Wikipedia's explanation of idempotence.
I know it means a function's output is determined by it's input.
But I remember that I heard a very similar concept: pure function.
I Google them but ...
2
votes
4answers
134 views
Should a GetEnumerator method still be idempotent when the class does not implement IEnumerable
This question piggy backs of another question which I raised regarding abusing the IEnumerable interface by modifying an object as you iterate over it.
The general consensus is that no anything that ...
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 ...
1
vote
0answers
15 views
Passing POST parameters - no URL. Where are they exactly?
I'm designing a simple web appliance that takes temperature and humidity readings and I want to post them to a remote server and have them added to a MySQL table of data.
I understand that GET is the ...
1
vote
1answer
67 views
Confused about idempotency, PUT, GET, POST, etc
Most of the discussions about these topics are about how to form a URL or how to request a resource. Let me describe what I'm doing and see if the community can help me restate my problem in the more ...
1
vote
2answers
90 views
Patterns to azure idempotent operations?
anybody know patterns to design idempotent operations to azure manipulation, specially the table storage? The more common approach is generate a id operation and cache it to verify new executions, ...
1
vote
1answer
97 views
taskqueue and non-idempotent tasks
I'm working on a voting app, where the user can upload a list of email addresses for all of the voters. After doing some error checking, I create a Voter entity for each voter. Since there can be a ...
0
votes
0answers
24 views
Idempotent Request mechanism with Spring
I have a client side app that needs to call http/amf services, and if it retries the call, no duplication of outcome to happen.
Is Spring support Idempotent mechanism for Http Request?
Also for ...
0
votes
1answer
99 views
Hibernate Idempotent Update
I tried searching this over the net but in vain. Is there a way to use hibernate to perform an idempotent update.
One use case is to use HTTP PUT to update a specific field in the database via a ...
0
votes
2answers
170 views
How can I perform an idempotent insert row using subsonic with a SQL 2008 backend?
How can I perform an idempotent insert row using subsonic with a SQL 2008 backend?
e.g.
I have a table "Colors" where name is the primary key.
Color c = new Color;
c.name = "red";
c.Save;
Color ...
0
votes
2answers
477 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 ...
0
votes
1answer
123 views
Getting error when using post method in form
I am getting null when I am using post method while passing a form to the next page
A repeat of this question
link text
<html>
<head>
Title
<script>
function callme()
{
...