bump DHT peer manager cache to 16384

This commit is contained in:
Victor Shyba 2022-01-29 14:23:41 -03:00
parent b13c346418
commit 72beb02ec1

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__)