Method: ActiveSupport::Cache::RedisCacheStore#cleanup
- Defined in:
- activesupport/lib/active_support/cache/redis_cache_store.rb
#cleanup(options = nil) ⇒ Object
Cache Store API implementation.
Removes expired entries. Handled natively by Redis least-recently-/ least-frequently-used expiry, so manual cleanup is not supported.
282 283 284 |
# File 'activesupport/lib/active_support/cache/redis_cache_store.rb', line 282 def cleanup( = nil) super end |