class LRUCache::Datum

def expired?

def expired?
  !@expiration.nil? && @expiration <= Time.now
end