From 85fd32cb11a0756dee7b3fcae6d0a397f84e453a Mon Sep 17 00:00:00 2001 From: mgabrielramos <83740829+mgabrielramos@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:26:34 +0000 Subject: [PATCH] perf: parallelize fs.realpath in listMemoryFiles Optimize the deduplication loop in listMemoryFiles by using Promise.all to resolve paths concurrently instead of sequentially. Measured improvement: ~34% (96.57ms -> 63.22ms for 1000 files).