aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/concurrent_hash.rb
blob: 40224765a70777ca6c47635da4810768cbf511b8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                 
       














                                               
module ActiveSupport
  class ConcurrentHash
    def initialize(hash = {})
      @backup_cache = hash.dup
      @frozen_cache = hash.dup.freeze
      @mutex = Mutex.new
    end

    def []=(k,v)
      @mutex.synchronize { @backup_cache[k] = v }
      @frozen_cache = @backup_cache.dup.freeze
      v
    end

    def [](k)
      if @frozen_cache.key?(k)
        @frozen_cache[k]
      else
        @mutex.synchronize { @backup_cache[k] }
      end
    end

    def empty?
      @backup_cache.empty?
    end
  end
end