BLAST automatically maintains a prefix cache, similar to most LLM serving engines. The difference is
that browser-augmented LLM prefix cache must be aware of the underlying browser resources required to
reuse cache and continue execution.
"" # Cache everything (default)"no-cache" # Skip results cache lookup"no-store" # Don't store results in cache"no-cache-plan" # Skip plan cache lookup"no-store-plan" # Don't store plan in cache
Options can be combined:
Copy
"no-cache,no-store" # Skip all caching"no-cache-plan,no-store-plan" # Skip plan cache but use result cache"no-store,no-store-plan" # Skip storing but check cache