From 8989858c2aa56c0f133b66cad3ce90cc32a84f99 Mon Sep 17 00:00:00 2001 From: Nathan Dyck Date: Wed, 16 Jun 2021 15:13:38 -0400 Subject: [PATCH] [posix] increase default address cache size from 32 to 128 (#6712) Having this value sufficiently large is important to reduce latency when multiple simultaneous requests come in to a BR for many if not all the nodes on the network. This could happen when a client reconnects on Wifi and needs to query and/or update the state for many nodes at the same time. --- src/posix/platform/openthread-core-posix-config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posix/platform/openthread-core-posix-config.h b/src/posix/platform/openthread-core-posix-config.h index 7b4051d72..16dd0a3b3 100644 --- a/src/posix/platform/openthread-core-posix-config.h +++ b/src/posix/platform/openthread-core-posix-config.h @@ -153,7 +153,7 @@ * */ #ifndef OPENTHREAD_CONFIG_TMF_ADDRESS_CACHE_ENTRIES -#define OPENTHREAD_CONFIG_TMF_ADDRESS_CACHE_ENTRIES 32 +#define OPENTHREAD_CONFIG_TMF_ADDRESS_CACHE_ENTRIES 128 #endif /**