method

parse_query_cache

rails latest stable - Class: ActiveRecord::DatabaseConfigurations::UrlConfig

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

parse_query_cache()
private

No documentation available.

# File activerecord/lib/active_record/database_configurations/url_config.rb, line 60
        def parse_query_cache
          case value = @configuration_hash[:query_cache]
          when /\A\d+\z/
            value.to_i
          when "false"
            false
          else
            value
          end
        end