Class: ActiveRecord::ConnectionAdapters::RedshiftAdapter::StatementPool
- Inherits:
-
ConnectionAdapters::StatementPool
- Object
- ConnectionAdapters::StatementPool
- ActiveRecord::ConnectionAdapters::RedshiftAdapter::StatementPool
- Defined in:
- lib/active_record/connection_adapters/redshift_adapter.rb
Instance Method Summary collapse
- #[](key) ⇒ Object
- #[]=(sql, key) ⇒ Object
- #clear ⇒ Object
- #delete(sql_key) ⇒ Object
- #each(&block) ⇒ Object
-
#initialize(connection, max) ⇒ StatementPool
constructor
A new instance of StatementPool.
- #key?(key) ⇒ Boolean
- #length ⇒ Object
- #next_key ⇒ Object
Constructor Details
#initialize(connection, max) ⇒ StatementPool
Returns a new instance of StatementPool.
289 290 291 292 293 |
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 289 def initialize(connection, max) super @counter = 0 @cache = Hash.new { |h,pid| h[pid] = {} } end |
Instance Method Details
#[](key) ⇒ Object
297 |
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 297 def [](key); cache[key]; end |
#[]=(sql, key) ⇒ Object
304 305 306 307 308 309 310 |
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 304 def []=(sql, key) while @max <= cache.size dealloc(cache.shift.last) end @counter += 1 cache[sql] = key end |
#clear ⇒ Object
312 313 314 315 316 317 |
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 312 def clear cache.each_value do |stmt_key| dealloc stmt_key end cache.clear end |
#delete(sql_key) ⇒ Object
319 320 321 322 |
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 319 def delete(sql_key) dealloc cache[sql_key] cache.delete sql_key end |
#each(&block) ⇒ Object
295 |
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 295 def each(&block); cache.each(&block); end |
#key?(key) ⇒ Boolean
296 |
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 296 def key?(key); cache.key?(key); end |
#length ⇒ Object
298 |
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 298 def length; cache.length; end |
#next_key ⇒ Object
300 301 302 |
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 300 def next_key "a#{@counter + 1}" end |