# File lib/jmespath/caching_parser.rb, line 6
    def initialize(options = {})
      @parser = options[:parser] || Parser.new(options)
      @mutex = Mutex.new
      @cache = {}
    end