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
The button that lets you rebuild the item names database only starts rebuilding the database the first time that it is pressed. This is because the RebuildItemDatabase(...) method is invoked by the constructor of the RebuildNamesDatabaseViewModel, and the viewmodel is only instantiated once for the lifetime of the application.
Besides that, the entire process is kinda slow and could be sped up by using the paginated items endpoint and by handling tasks asynchronously.
The text was updated successfully, but these errors were encountered:
The button that lets you rebuild the item names database only starts rebuilding the database the first time that it is pressed. This is because the
RebuildItemDatabase(...)
method is invoked by the constructor of theRebuildNamesDatabaseViewModel
, and the viewmodel is only instantiated once for the lifetime of the application.Besides that, the entire process is kinda slow and could be sped up by using the paginated items endpoint and by handling tasks asynchronously.
The text was updated successfully, but these errors were encountered: