Merge pull request #3552 from lbryio/bump_dht_cache

Increase DHT peer manager cache size to 16384
This commit is contained in:
Jack Robison 2022-02-04 11:59:19 -05:00 committed by GitHub
commit c2294e97db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ from lbry.dht import constants
from lbry.dht.serialization.datagram import make_compact_address, make_compact_ip, decode_compact_address
ALLOW_LOCALHOST = False
CACHE_SIZE = 2048
CACHE_SIZE = 16384
log = logging.getLogger(__name__)