Re: Biggest Delphi bottleneck?



My current project makes heavy use of TInterfaceList (which internally
uses TList) and I reckon it would give me some noticeable perfomance
boost if I replace it with something faster... I guess I should start
a FastCode challenge <g>

TInterfaceList is slow because of locking - it's threadsafe (uses TThreadList internally)
.