Please update the javadoc to clearly indicate which classes are thread-safe and which are not. This will aid performance optimization for code using the library. #1044
petesramka
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
You can read the Performance Considerations section of the readme. You would need to be more specific on which classes you need clarification of as you make it sound like you expect every single class to indicate whether it is thread safe or not. Other than instances of |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
One of your big selling points is that your library is fast. Without knowing which classes are thread-safe, I don't know which objects I can share across threads. Knowing which objects can be shared across threads determines which types of caches implementations can be used. This, in turn, allows code using your library to be performance optimized.
Beta Was this translation helpful? Give feedback.
All reactions