These are the entries in the DataCache. They store a value and an access counter. The counter can be read and written externally.
Create a new DataCacheEntry for the value. The access counter is set to 1 to increase the chance that it is not flushed immedidate.
# File lib/DataCache.rb, line 26 26: def initialize(value) 27: @value = value 28: @hits = 1 29: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.