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
According to best practices, it is better to do Coredata related operations in the background, not to cause any possible performance drops, or UI blocks
I feel like you are doing some database access in the main thread:
Context
Class: CoreDataObservable, function:observe, and
Class:CoreDataDefaultStorageTests function:spec, both calling fetch which is doing database operations
Proposal
Don't you think it would be better to take these operations off the main thread?
The text was updated successfully, but these errors were encountered:
Hello guys!
What
According to best practices, it is better to do Coredata related operations in the background, not to cause any possible performance drops, or UI blocks
I feel like you are doing some database access in the main thread:
Context
Class: CoreDataObservable, function:observe, and
Class:CoreDataDefaultStorageTests function:spec, both calling fetch which is doing database operations
Proposal
Don't you think it would be better to take these operations off the main thread?
The text was updated successfully, but these errors were encountered: