Class: Dalli::Protocol::Base
- Inherits:
-
Object
- Object
- Dalli::Protocol::Base
- Extended by:
- Forwardable
- Defined in:
- lib/dalli/protocol/base.rb
Overview
Base class for a single Memcached server, containing logic common to all protocols. Contains logic for managing connection state to the server and value handling.
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
-
#weight ⇒ Object
Returns the value of attribute weight.
Instance Method Summary collapse
-
#alive? ⇒ Boolean
Boolean method used by clients of this class to determine if this particular memcached instance is available for use.
-
#initialize(attribs, client_options = {}) ⇒ Base
constructor
A new instance of Base.
- #lock! ⇒ Object
- #password ⇒ Object
-
#pipeline_abort ⇒ Object
Abort current pipelined get.
-
#pipeline_complete? ⇒ Boolean
Did the last call to #pipeline_response_setup complete successfully?.
-
#pipeline_next_responses ⇒ Object
Attempt to receive and parse as many key/value pairs as possible from this server.
-
#pipeline_response_setup ⇒ Object
Start reading key/value pairs from this connection.
- #quiet? ⇒ Boolean (also: #multi?)
-
#request(opkey, *args) ⇒ Object
Chokepoint method for error handling and ensuring liveness.
- #require_auth? ⇒ Boolean
- #unlock! ⇒ Object
- #username ⇒ Object
Constructor Details
#initialize(attribs, client_options = {}) ⇒ Base
Returns a new instance of Base.
23 24 25 26 27 28 |
# File 'lib/dalli/protocol/base.rb', line 23 def initialize(attribs, = {}) hostname, port, socket_type, @weight, user_creds = ServerConfigParser.parse(attribs) = .merge(user_creds) @value_marshaller = ValueMarshaller.new() @connection_manager = ConnectionManager.new(hostname, port, socket_type, ) end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
17 18 19 |
# File 'lib/dalli/protocol/base.rb', line 17 def end |
#weight ⇒ Object
Returns the value of attribute weight.
17 18 19 |
# File 'lib/dalli/protocol/base.rb', line 17 def weight @weight end |
Instance Method Details
#alive? ⇒ Boolean
Boolean method used by clients of this class to determine if this particular memcached instance is available for use.
50 51 52 53 54 55 56 |
# File 'lib/dalli/protocol/base.rb', line 50 def alive? ensure_connected! rescue Dalli::NetworkError # ensure_connected! raises a NetworkError if connection fails. We # want to capture that error and convert it to a boolean value here. false end |
#lock! ⇒ Object
58 |
# File 'lib/dalli/protocol/base.rb', line 58 def lock!; end |
#password ⇒ Object
133 134 135 |
# File 'lib/dalli/protocol/base.rb', line 133 def password [:password] || ENV.fetch('MEMCACHE_PASSWORD', nil) end |
#pipeline_abort ⇒ Object
Abort current pipelined get. Generally used to signal an external timeout during pipelined get. The underlying socket is disconnected, and the exception is swallowed.
Returns nothing.
112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/dalli/protocol/base.rb', line 112 def pipeline_abort response_buffer.clear @connection_manager.abort_request! return true unless connected? # Closes the connection, which ensures that our connection # is in a clean state for future requests @connection_manager.error_on_request!('External timeout') rescue NetworkError true end |
#pipeline_complete? ⇒ Boolean
Did the last call to #pipeline_response_setup complete successfully?
125 126 127 |
# File 'lib/dalli/protocol/base.rb', line 125 def pipeline_complete? !response_buffer.in_progress? end |
#pipeline_next_responses ⇒ Object
Attempt to receive and parse as many key/value pairs as possible from this server. After #pipeline_response_setup, this should be invoked repeatedly whenever this server’s socket is readable until #pipeline_complete?.
Returns a Hash of kv pairs received.
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/dalli/protocol/base.rb', line 80 def pipeline_next_responses reconnect_on_pipeline_complete! values = {} response_buffer.read status, cas, key, value = response_buffer.process_single_getk_response # status is not nil only if we have a full response to parse # in the buffer until status.nil? # If the status is ok and key is nil, then this is the response # to the noop at the end of the pipeline finish_pipeline && break if status && key.nil? # If the status is ok and the key is not nil, then this is a # getkq response with a value that we want to set in the response hash values[key] = [value, cas] unless key.nil? # Get the next response from the buffer status, cas, key, value = response_buffer.process_single_getk_response end values rescue SystemCallError, Timeout::Error, EOFError => e @connection_manager.error_on_request!(e) end |
#pipeline_response_setup ⇒ Object
Start reading key/value pairs from this connection. This is usually called after a series of GETKQ commands. A NOOP is sent, and the server begins flushing responses for kv pairs that were found.
Returns nothing.
67 68 69 70 71 72 |
# File 'lib/dalli/protocol/base.rb', line 67 def pipeline_response_setup verify_state(:getkq) write_noop response_buffer.reset @connection_manager.start_request! end |
#quiet? ⇒ Boolean Also known as: multi?
141 142 143 |
# File 'lib/dalli/protocol/base.rb', line 141 def quiet? Thread.current[::Dalli::QUIET] end |
#request(opkey, *args) ⇒ Object
Chokepoint method for error handling and ensuring liveness
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/dalli/protocol/base.rb', line 31 def request(opkey, *args) verify_state(opkey) begin send(opkey, *args) rescue Dalli::MarshalError => e log_marshal_err(args.first, e) raise rescue Dalli::DalliError raise rescue StandardError => e log_unexpected_err(e) down! end end |
#require_auth? ⇒ Boolean
137 138 139 |
# File 'lib/dalli/protocol/base.rb', line 137 def require_auth? !username.nil? end |
#unlock! ⇒ Object
60 |
# File 'lib/dalli/protocol/base.rb', line 60 def unlock!; end |
#username ⇒ Object
129 130 131 |
# File 'lib/dalli/protocol/base.rb', line 129 def username [:username] || ENV.fetch('MEMCACHE_USERNAME', nil) end |