You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Save and update requires to check in the database whether the entry exists or not,
if exists it updates else adds, but that increase overhead and compute time as it will have to check for every single value.
A temporary new method called saveWithoutUpdate has been added to overcome this but it would only work if there are no duplicate records, if there are duplicate records it will ignore it.
Need a better approach to handle this issue, so that it is fast and also keeps the same functionality at the same time.
Error log
None
The text was updated successfully, but these errors were encountered:
Description
Save and update requires to check in the database whether the entry exists or not,
if exists it updates else adds, but that increase overhead and compute time as it will have to check for every single value.
A temporary new method called
saveWithoutUpdate
has been added to overcome this but it would only work if there are no duplicate records, if there are duplicate records it will ignore it.Need a better approach to handle this issue, so that it is fast and also keeps the same functionality at the same time.
Error log
None
The text was updated successfully, but these errors were encountered: