Is the Perl Perl-LDAP module (Net :: LDAP) thread safe?

I was looking for an answer to this question, which I can think of, but I did not find a clear answer.

This is the main page of the module: http://ldap.perl.org/ It refers to the documentation, but in my searches for documents I did not find mention of thread safety.

+3
source share
1 answer

Since version 0.4001, apparently not. Pay attention to this comment from the LDAP / Message.pm file:

# We do this here so when we add threading we can lock it

Thus, it would seem that the author, at least at some point in the past, was going to add support for streams, but, admittedly, has not yet managed.

Hope this helps.

+2
source

All Articles