Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
StreamTracker should better extend ArrayDeque to reduce memory copies
Motivation: StreamTracker did extend ArrayList which is not optimal as we always remove from index 0 and so cause memory copies. Modifications: Let StreamTracker extend ArrayDeque so removals dont cause memory copies all the time Result: Less memory copies
- Loading branch information