From ec037d7c90e9b4a34187515681b7416eef0fa980 Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Wed, 25 Jun 2025 20:06:18 +0000 Subject: [PATCH] fix(extractor): do not cache session-scoped Fsst should fix issues where results work only once --- src/extractor/Fsst.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/extractor/Fsst.ts b/src/extractor/Fsst.ts index 7ed843f..2e3cdac 100644 --- a/src/extractor/Fsst.ts +++ b/src/extractor/Fsst.ts @@ -8,6 +8,8 @@ export class Fsst extends Extractor { public readonly label = 'Fsst'; + public override readonly ttl = 0; + private readonly fetcher: Fetcher; public constructor(fetcher: Fetcher) {