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 client pipelining uses CommandLists and vectors<Command*> in parallel, which is redundant in storage. This should be refactored to eliminate the redundancy
Justification
This will improve maintainability of the codebase
Implementation Strategy
One strategy might be to rework the CommandList class to store command data as a vector<command*> internally that we can access for pipelining calls
The text was updated successfully, but these errors were encountered:
Description
The client pipelining uses CommandLists and vectors<Command*> in parallel, which is redundant in storage. This should be refactored to eliminate the redundancy
Justification
This will improve maintainability of the codebase
Implementation Strategy
One strategy might be to rework the CommandList class to store command data as a vector<command*> internally that we can access for pipelining calls
The text was updated successfully, but these errors were encountered: