Method: Scrivito::Configuration.cache_path=
- Defined in:
- lib/scrivito/configuration.rb
.cache_path=(path) ⇒ Object
Set the path for the filesystem cache.
Scrivito
makes heavy use of filesystem caching. Use this method to configure the directory that should be used to store cached data. By default, RAILS_ROOT/tmp/scrivito_cache
will be used.
101 102 103 |
# File 'lib/scrivito/configuration.rb', line 101 def cache_path=(path) CmsDataCache.cache_path = path end |