VIEW MORE ARTICLES
Rinas Writes

November 20, 2024

TIL: Check cache exists and value in rails console
# Check if cache exists
Rails.cache.exist?('latest_posts')

# Read the current cached value
Rails.cache.read('latest_posts')

# Delete the cache if needed
Rails.cache.delete('latest_posts')