aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/statement_pool.rb
blob: 82e9ef3d3d362f5d84fa031467f5e2cbf9e81273 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11





                                            
                                                 



                                

                          


                   
                       


                 
                  


                
                    

         




                                   


               



                                  


                     










                           




                                 
module ActiveRecord
  module ConnectionAdapters
    class StatementPool
      include Enumerable

      def initialize(connection, max = 1000)
        @cache = Hash.new { |h,pid| h[pid] = {} }
        @connection = connection
        @max        = max
      end

      def each(&block)
        cache.each(&block)
      end

      def key?(key)
        cache.key?(key)
      end

      def [](key)
        cache[key]
      end

      def length
        cache.length
      end

      def []=(sql, stmt)
        while @max <= cache.size
          dealloc(cache.shift.last)
        end
        cache[sql] = stmt
      end

      def clear
        cache.each_value do |stmt|
          dealloc stmt
        end
        cache.clear
      end

      def delete(key)
        dealloc cache[key]
        cache.delete(key)
      end

      private

      def cache
        @cache[Process.pid]
      end

      def dealloc(stmt)
        raise NotImplementedError
      end
    end
  end
end