Class: Moneta::Shared
Overview
Shares a store between processes
Instance Attribute Summary
Attributes inherited from Proxy
Instance Method Summary collapse
-
#close ⇒ Object
Explicitly close the store.
-
#initialize(options = {}, &block) ⇒ Shared
constructor
A new instance of Shared.
Methods inherited from Wrapper
#clear, #create, #delete, #each_key, #features, #fetch_values, #increment, #key?, #load, #merge!, #slice, #store, #values_at
Methods inherited from Proxy
#clear, #create, #delete, #each_key, #features, features_mask, #fetch_values, #increment, #key?, #load, #merge!, not_supports, #slice, #store, #values_at
Methods included from Defaults
#[], #[]=, #create, #decrement, #each_key, #features, #fetch, #fetch_values, included, #increment, #key?, #merge!, #slice, #supports?, #update, #values_at
Methods included from OptionSupport
#expires, #prefix, #raw, #with
Constructor Details
Instance Method Details
#close ⇒ Object
Explicitly close the store
27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/moneta/shared.rb', line 27 def close if @server @server.stop @thread.join @server = @thread = nil end if @adapter @adapter.close @adapter = nil end end |