From 3487fde236d0852a8b0672c293fa41a741f471e8 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Fri, 17 Mar 2023 16:15:27 -0600 Subject: perf(core) Reduce copying and cloning in extension initialization (#18252) Follow-up to #18210: * we are passing the generated `cfg` object into the state function rather than passing individual config fields * reduce cloning dramatically by making the state_fn `FnOnce` * `take` for `ExtensionBuilder` to avoid more unnecessary copies * renamed `config` to `options` --- ext/cache/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/cache') diff --git a/ext/cache/lib.rs b/ext/cache/lib.rs index eaf56c8b7..b5a29e905 100644 --- a/ext/cache/lib.rs +++ b/ext/cache/lib.rs @@ -32,11 +32,11 @@ deno_core::extension!(deno_cache, op_cache_delete, ], esm = [ "01_cache.js" ], - config = { + options = { maybe_create_cache: Option>, }, - state = |state, maybe_create_cache| { - if let Some(create_cache) = maybe_create_cache { + state = |state, options| { + if let Some(create_cache) = options.maybe_create_cache { state.put(create_cache); } }, -- cgit v1.2.3