This is my situation, I'm getting data from my Shopify shop via API and saving them to a database. My problem is how to prevent duplicate records from infesting the database. any code snippet about this? Thank you! i want only the new entries made from the shop to be saved instead of having all the entries enter the database over and over again.
|
|
You can either add a The duplicate entries will raise an exception, which you can catch and ignore. |
|||||||||||||
|
|
Another method is to only grab records from Shopify that are new. For example, if you are syncing products, and the last product ID that you pulled down from your Shopify store is
Or you can record the last time you synced your products somewhere, like a
Finally, I would use something like Of course, make sure to index the
This index will ensure that you cannot create product records with duplicate |
|||
|
|