# File lib/thread_safe/non_concurrent_cache_backend.rb, line 43 def compute_if_present(key) if NULL != (stored_value = @backend.fetch(key, NULL)) store_computed_value(key, yield(stored_value)) end end