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
Is your feature request related to a problem? Please describe
Performance and continued development are hampered by having to complete all things synchronously.
Describe the solution you'd like
Add a always running container that can do more long running data operations when asked to via some interface. For example the git fetching of dab repo list could be done periodically and asynchronously to make the command much faster as that operation was done in the background recently.
Describe alternatives you've considered
Doing things synchronously can make every command slow even when they should be quick. Have also made some hooks run in the background however because the final action must be to wait for them to finish the gains are small.
The text was updated successfully, but these errors were encountered:
Feature Request
Is your feature request related to a problem? Please describe
Performance and continued development are hampered by having to complete all things synchronously.
Describe the solution you'd like
Add a always running container that can do more long running data operations when asked to via some interface. For example the git fetching of
dab repo list
could be done periodically and asynchronously to make the command much faster as that operation was done in the background recently.Describe alternatives you've considered
Doing things synchronously can make every command slow even when they should be quick. Have also made some hooks run in the background however because the final action must be to wait for them to finish the gains are small.
The text was updated successfully, but these errors were encountered: