module Nokogiri::CSS::SelectorCache

def []=(key, value)

Insert the XPath expressions `value` at the cache key
def []=(key, value)
  @mutex.synchronize { @cache[key] = value }
end