1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# frozen_string_literal: true
require 'thread'
module JMESPath
class CachingParser
def initialize(options = {})
@parser = options[:parser] || Parser.new(options)
@mutex = Mutex.new
@cache = {}
end
def parse(expression)
if cached = @cache[expression]
cached
else
cache_expression(expression)
end
end
private
def cache_expression(expression)
@mutex.synchronize do
@cache.clear if @cache.size > 1000
@cache[expression] = @parser.parse(expression)
end
end
end
end
|