Sha256: f0275f13eb2e3fb4ade6ff3069df8d37ad544bd45177917f06bface716691aed
Contents?: true
Size: 352 Bytes
Versions: 2
Compression:
Stored size: 352 Bytes
Contents
module Glue # A general cache key. class CacheKey end # A general cache mechanism. # # This cache system was originaly developed for Nitro. It is # used to cache fragments, og objects (entities), sessions, # application scoped variables and more. class Cache def update(hash) hash.each { |key, value| self[key] = value } end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
glue-0.41.0 | lib/glue/cache.rb |
glue-0.40.0 | lib/glue/cache.rb |