You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
just performance issue, please change line 405 of parse :
if (ipaddr.IPv6.isValid(string)) {
to
if (string.indexOf(":") != -1 && ipaddr.IPv6.isValid(string)) {
because the valid test use too much performance, on dht tracker, I got 20% just on ipv6 check, after change get 20% performance improvement (on all software) !
regards.
The text was updated successfully, but these errors were encountered:
Hello,
just performance issue, please change line 405 of parse :
if (ipaddr.IPv6.isValid(string)) {
to
if (string.indexOf(":") != -1 && ipaddr.IPv6.isValid(string)) {
because the valid test use too much performance, on dht tracker, I got 20% just on ipv6 check, after change get 20% performance improvement (on all software) !
regards.
The text was updated successfully, but these errors were encountered: