Changes between Version 1 and Version 2 of Ticket #1424, comment 2
- Timestamp:
- 03/02/11 13:06:25 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1424, comment 2
v1 v2 1 I do not have a good explaination for the number 17 - this is just a reproducable observation. However the implementation of `ThreadLocal<T>` reveals that there is some sort of cache for 16 elements. I don't know if this is related.1 I do not have a good explaination for the number 17 - this is just a reproducable observation. However the implementation of `ThreadLocal<T>` reveals that there is ~~some sort of cache for 16 elements~~ a cache of 16^5^ (=1048576) `ThreadStatic` types, which may be exhausted after around 17 GA runs (with `TestFunctionProblem`). This limit may vary with other algorithms / problems.