class Bootsnap::LoadPathCache::Store

def initialize(store_path, readonly: false)

def initialize(store_path, readonly: false)
  @store_path = store_path
  @txn_mutex = Mutex.new
  @dirty = false
  @readonly = readonly
  load_data
end