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
Currently, each time a Bee node client instance is created within Beekeeper, a new HTTP client instance is also initialized. This leads to unnecessary resource usage and potential inefficiencies.
To improve performance and resource management, a single HTTP client instance should be created at the start and propagated wherever needed.
Tasks
Refactor the code to instantiate the HTTP client once at the beginning.
Ensure the single HTTP client instance is reused across all Bee node client instances.
Verify that all existing functionality remains intact after the refactor.
The text was updated successfully, but these errors were encountered:
Description
Currently, each time a Bee node client instance is created within Beekeeper, a new HTTP client instance is also initialized. This leads to unnecessary resource usage and potential inefficiencies.
To improve performance and resource management, a single HTTP client instance should be created at the start and propagated wherever needed.
Tasks
The text was updated successfully, but these errors were encountered: