Serverless API Essentials - Idempotency
When I first got into cloud development, my team and I dove headfirst into all aspects of modern software design. One of the most fun discussions we had was around idempotency.
Not because of the academic discussions we'd have around it, but because...
allenheltondev.hashnode.dev12 min read
Mritunjay Yadav
I am a backend developer , so that's what I do !
Awesome post , learnt alot from a single post . Now m thinking about implementing the same in my project as well π. I am wondering would that be a good idea to generate idempotency-key using some hashing algorithm which generates a hash using request parameters (because in that case matching would be easy and a bit faster as well)? what did you used to generate the key ?