cache.yaml 687 B

12345678910111213141516171819
  1. framework:
  2. cache:
  3. # Unique name of your app: used to compute stable namespaces for cache keys.
  4. #prefix_seed: your_vendor_name/app_name
  5. # The "app" cache stores to the filesystem by default.
  6. # The data in this cache should persist between deploys.
  7. # Other options include:
  8. # Redis
  9. #app: cache.adapter.redis
  10. #default_redis_provider: redis://localhost
  11. # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
  12. #app: cache.adapter.apcu
  13. # Namespaced pools use the above "app" backend by default
  14. #pools:
  15. #my.dedicated.cache: null