cache.yaml 659 B

12345678910111213141516171819
  1. framework:
  2. cache:
  3. # Put the unique name of your app here: the prefix seed
  4. # is used to compute stable namespaces for cache keys.
  5. #prefix_seed: your_vendor_name/app_name
  6. # The app cache caches to the filesystem by default.
  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: ~