// DOCS KNOWLEDGE BASE 3.x

Cache

Parsing and rendering markdown on every request would be slow, so the package caches all rendered files.

The flip side: when you edit a markdown file, you won't see the change until the cache is cleared:

php artisan cache:clear

Configuration

The cache prefix and TTL (in seconds) can be changed in the config file, or via the environment:

'cache' => [
    'prefix' => env('FILAMENT_KB_CACHE_PREFIX', 'filament_kb_'),
    'ttl' => env('FILAMENT_KB_CACHE_TTL', 86400),
],
guava/filament-knowledge-base 173K installs · 209 stars
// COOKIES

A few cookies keep the site working and remember the language you are reading in. Others count visits, and those stay off until you allow them.

Cookie policy