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
Right now the underlying process of the importer interface is synchronous though the interface being used is async. It might be beneficial to make the process itself async, but I'm not sure how feasible it would be since EF DbContext is not thread safe. I don't think it would be an issue with the current setup, since we are creating and disposing of the contexts in each method call, but it might be better in terms of performance to use a shared context instead of going async.
The text was updated successfully, but these errors were encountered:
Right now the underlying process of the importer interface is synchronous though the interface being used is async. It might be beneficial to make the process itself async, but I'm not sure how feasible it would be since EF DbContext is not thread safe. I don't think it would be an issue with the current setup, since we are creating and disposing of the contexts in each method call, but it might be better in terms of performance to use a shared context instead of going async.
The text was updated successfully, but these errors were encountered: