- Fix to increase responsiveness of dump_cache.

This commit is contained in:
W.C.A. Wijngaards 2025-08-14 11:25:40 +02:00
parent d122ae6490
commit 4f790bd65e
2 changed files with 4 additions and 1 deletions

View file

@ -107,7 +107,7 @@ dump_lruhash(struct lruhash* table, int (*func)(void*, void*), void* arg)
int not_done = 1;
hashvalue_type hash;
size_t num = 0; /* number of entries processed. */
size_t max = 1000; /* number of entries after which it unlocks. */
size_t max = 2; /* number of entries after which it unlocks. */
while(not_done) {
size_t i; /* hash bin. */

View file

@ -1,3 +1,6 @@
14 August 2025: Wouter
- Fix to increase responsiveness of dump_cache.
13 August 2025: Wouter
- unbound-control cache_lookup <domains> prints the cached rrsets
and messages for those.