Question from User:
I am making a JAVA based web app and the app spawns several threads to handle incoming requests. I use crypt2, and every time i use it, I create another new instance of the object. However, it has come to my mind that maybe i can use only one instance of crypt2 as a singleton and use it from various threads.
I believe that all chlikat products are thread safe aren't they?
Is this good idea or should i just stick to the method with spawn own chilkat instance for each threads.