class Bootsnap::LoadPathCache::Store

def initialize(store_path)

def initialize(store_path)
  @store_path = store_path
  # TODO: Remove conditional once Ruby 2.2 support is dropped.
  @txn_mutex =  defined?(::Mutex) ? ::Mutex.new : ::Thread::Mutex.new
  @dirty = false
  load_data
end