Class: Arachni::Support::Cache::LeastCostReplacement
- Defined in:
- lib/arachni/support/cache/least_cost_replacement.rb
Overview
Least Cost Replacement cache implementation.
Maintains 3 cost classes (low, medium, high) ) and discards entries from the lowest cost classes in order to make room for new ones.
Constant Summary collapse
- VALID_COSTS =
[ :low, :medium, :high ]
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #clear ⇒ Object
-
#initialize ⇒ LeastCostReplacement
constructor
A new instance of LeastCostReplacement.
-
#store(k, v, cost = :low) ⇒ Object
Storage method.
Methods inherited from Base
#==, #[], #[]=, #any?, #capped?, #delete, #dup, #empty?, #fetch_or_store, #hash, #include?, #size, #uncap, #uncapped?
Constructor Details
#initialize ⇒ LeastCostReplacement
Returns a new instance of LeastCostReplacement.
23 24 25 26 |
# File 'lib/arachni/support/cache/least_cost_replacement.rb', line 23 def initialize( * ) super reset_costs end |
Instance Method Details
#clear ⇒ Object
48 49 50 51 52 |
# File 'lib/arachni/support/cache/least_cost_replacement.rb', line 48 def clear super ensure reset_costs end |
#store(k, v, cost = :low) ⇒ Object
Storage method
39 40 41 42 43 44 45 |
# File 'lib/arachni/support/cache/least_cost_replacement.rb', line 39 def store( k, v, cost = :low ) fail( "invalid cost: #{cost}" ) if !valid_cost?( cost ) super( k, v ) ensure @costs[cost] << k end |