class CopyTunerClient::Cache

def []=(key, value)

Parameters:
  • value (String) -- the new contents of the blurb
  • key (String) -- the key of the blurb to update
def []=(key, value)
  return if key =~ @exclude_key_regexp
  lock { @queued[key] = value }
end