Hi, In some cases, it may be necessary to dynamically give the duration parameter. something like this. ``` cache((req) => { if (req.mycondition) { return '1 minute'; } return '1 hour'; }); ```