Sha256: f18db77b06c60f0cb8c250f0e53d81a075b9cc2f877f7c77d5b76df81339df46

Contents?: true

Size: 1.43 KB

Versions: 5

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

require 'active_record/connection_adapters/statement_pool'

module ArJdbc
  module Abstract
    module StatementCache

      # This works a little differently than the AR implementation in that
      # we are storing an actual PreparedStatement object instead of just
      # the name of the prepared statement
      class StatementPool < ActiveRecord::ConnectionAdapters::StatementPool

        private

        def dealloc(statement)
          statement.close
        end

      end

      def initialize(*args) # (connection, logger, config)
        super

        # Only say we support the statement cache if we are using prepared statements
        # and have a max number of statements defined
        statement_limit = self.class.type_cast_config_to_integer(@config[:statement_limit])
        @jdbc_statement_cache_enabled = prepared_statements && (statement_limit.nil? || statement_limit > 0)

        @statements = StatementPool.new(statement_limit) # AR (5.0) expects this to be stored as @statements
      end

      def delete_cached_statement(sql)
        @statements.delete(sql_key(sql))
      end

      def fetch_cached_statement(sql)
        @statements[sql_key(sql)] ||= @raw_connection.prepare_statement(sql)
      end

      private

      # This should be overridden by the adapter if the sql itself
      # is not enough to make the key unique
      def sql_key(sql)
        sql
      end

    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
activerecord-jdbc-alt-adapter-72.0.0.rc1-java lib/arjdbc/abstract/statement_cache.rb
activerecord-jdbc-alt-adapter-72.0.0.alpha1-java lib/arjdbc/abstract/statement_cache.rb
activerecord-jdbc-alt-adapter-71.0.0-java lib/arjdbc/abstract/statement_cache.rb
activerecord-jdbc-adapter-71.0-java lib/arjdbc/abstract/statement_cache.rb
activerecord-jdbc-alt-adapter-71.0.0.alpha2-java lib/arjdbc/abstract/statement_cache.rb