views.cache.schema.yml 979 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Schema for the views cache.
  2. views.cache.none:
  3. type: views_cache
  4. label: 'No caching'
  5. mapping:
  6. options:
  7. type: sequence
  8. label: 'Options'
  9. views.cache.tag:
  10. type: views_cache
  11. label: 'Tag based caching'
  12. mapping:
  13. options:
  14. type: sequence
  15. label: 'Options'
  16. views.cache.time:
  17. type: views_cache
  18. label: 'Time based caching'
  19. mapping:
  20. options:
  21. type: mapping
  22. label: 'Cache options'
  23. mapping:
  24. results_lifespan:
  25. type: integer
  26. label: 'The length of time raw query results should be cached.'
  27. results_lifespan_custom:
  28. type: integer
  29. label: 'Length of time in seconds raw query results should be cached.'
  30. output_lifespan:
  31. type: integer
  32. label: 'The length of time rendered HTML output should be cached.'
  33. output_lifespan_custom:
  34. type: integer
  35. label: 'Length of time in seconds rendered HTML output should be cached.'