Hi There,
I’ve been using a Backend API to create some inputs…
Those inputs com from an API.
I’ve usually got duplicated inserts in Database despite I “do a Search :First Item” to be assured that there will be no duplicates…
My first guess is that those inputs occur so close one to another, that the first one is not already in the database, so my search results in null. A second later I can find two insertions with the same exactly record…
Is there a practical way to avoid such situations?
I usually do a search for duplicates, soon after its creation to delete one !, in order to clean my database…
Any Advice?
A cleaner way to prevent duplicates in BackEnd from APIs?
Tks in advance !