Guest User

Untitled

a guest
Jul 30th, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.68 KB | None | 0 0
  1. Configuration/Caches.yaml:
  2.  
  3. # #
  4. # Caches configuration #
  5. # #
  6. # This file contains a list of caches which are automatically registered #
  7. # while initializing the cache framework. If caches want to benefit from #
  8. # the automatic flushing mechanisms (such as garbage collection and #
  9. # automatic flushing by tag) they must be registered in a Caches.yaml #
  10. # file. #
  11. # #
  12.  
  13. ##
  14. # Default cache configuration
  15. #
  16. # If no frontend, backend or options are specified for a cache, these values
  17. # will be taken to create the cache.
  18. Default:
  19. frontend: TYPO3\Flow\Cache\Frontend\VariableFrontend
  20. backend: TYPO3\Flow\Cache\Backend\FileBackend
  21. backendOptions:
  22. defaultLifetime: 0
  23.  
  24. ##
  25. # Definition of caches used by TYPO3 Flow:
  26. #
  27. Flow_Cache_ResourceFiles: []
  28.  
  29. # Flow_Core
  30. #
  31. # This cache is used by the Bootstrap to communicate between main and sub process
  32. # about Doctrine proxy class building.
  33. Flow_Core:
  34. frontend: TYPO3\Flow\Cache\Frontend\StringFrontend
  35. backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
  36.  
  37. # Flow_I18n_*
  38. #
  39. # These caches contain precompiled data from the CLDR and information about available
  40. # locales and translations.
  41. Flow_I18n_AvailableLocalesCache: []
  42. Flow_I18n_XmlModelCache: []
  43. Flow_I18n_Cldr_CldrModelCache: []
  44. Flow_I18n_Cldr_Reader_DatesReaderCache: []
  45. Flow_I18n_Cldr_Reader_NumbersReaderCache: []
  46. Flow_I18n_Cldr_Reader_PluralsReaderCache: []
  47.  
  48. # Flow_Monitor
  49. Flow_Monitor:
  50. backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
  51.  
  52. # Flow_Mvc_Routing_*
  53. #
  54. # These caches contain request patterns and their matches and the opposite direction –
  55. # action request patterns and their resolved URL.
  56. Flow_Mvc_Routing_FindMatchResults:
  57. backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
  58. Flow_Mvc_Routing_Resolve:
  59. frontend: TYPO3\Flow\Cache\Frontend\StringFrontend
  60. backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
  61.  
  62. # Flow_Object_Classes
  63. #
  64. # This is the main code cache. It contains copies of the original classes and proxy
  65. # classes built by AOP and the Dependency Injection builder.
  66. Flow_Object_Classes:
  67. frontend: TYPO3\Flow\Cache\Frontend\PhpFrontend
  68. backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
  69.  
  70. # Flow_Object_Configuration
  71. #
  72. # This cache contains meta and status information for all code building mechanisms
  73. # of Flow. It states if certain code caches are up to date and stores previously
  74. # built object configurations.
  75. Flow_Object_Configuration:
  76. backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
  77.  
  78. # Flow_Persistence_Doctrine
  79. #
  80. # This cache contains meta data for the Doctrine ORM.
  81. Flow_Persistence_Doctrine:
  82. backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
  83.  
  84. # Flow_Reflection*
  85. #
  86. #
  87. Flow_Reflection_Status:
  88. frontend: TYPO3\Flow\Cache\Frontend\StringFrontend
  89. backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
  90. Flow_Reflection_CompiletimeData:
  91. backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
  92. Flow_Reflection_RuntimeData: []
  93. Flow_Reflection_RuntimeClassSchemata: []
  94.  
  95. # Flow_Resource_Status
  96. #
  97. # Stores the publication status of static and persistent resources
  98. Flow_Resource_Status:
  99. frontend: TYPO3\Flow\Cache\Frontend\StringFrontend
  100.  
  101. # Flow_Security_*
  102. Flow_Security_Policy: []
  103. Flow_Security_Cryptography_RSAWallet:
  104. backendOptions:
  105. defaultLifetime: 30
  106.  
  107. # Flow_Session_*
  108. Flow_Session_MetaData:
  109. backend: TYPO3\Flow\Cache\Backend\FileBackend
  110. Flow_Session_Storage:
  111. backend: TYPO3\Flow\Cache\Backend\FileBackend
  112.  
  113.  
  114. Configuration/Production/Caches.yaml:
  115.  
  116. # Flow_Reflection*
  117. #
  118. #
  119.  
  120. Flow_Reflection_RuntimeData:
  121. backend: VKF\Core\Cache\Backend\SimpleFileBackend
  122. Flow_Reflection_RuntimeClassSchemata:
  123. backend: VKF\Core\Cache\Backend\SimpleFileBackend
Advertisement
Add Comment
Please, Sign In to add comment