Class: Dalli::Server

Inherits:
Object
  • Object
show all
Defined in:
lib/dalli/server.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attribs) ⇒ Server

Returns a new instance of Server.



10
11
12
13
14
15
16
17
18
19
# File 'lib/dalli/server.rb', line 10

def initialize(attribs)
  (@hostname, @port, @weight) = attribs.split(':')
  @port ||= 11211
  @port = Integer(@port)
  @weight ||= 1
  @weight = Integer(@weight)
  @down_at = nil
  @version = detect_memcached_version
  Dalli.logger.debug { "#{@hostname}:#{@port} running memcached v#{@version}" }
end

Instance Attribute Details

#hostnameObject

Returns the value of attribute hostname.



6
7
8
# File 'lib/dalli/server.rb', line 6

def hostname
  @hostname
end

#portObject

Returns the value of attribute port.



7
8
9
# File 'lib/dalli/server.rb', line 7

def port
  @port
end

#weightObject

Returns the value of attribute weight.



8
9
10
# File 'lib/dalli/server.rb', line 8

def weight
  @weight
end

Instance Method Details

#alive?Boolean

Returns:

  • (Boolean)


36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/dalli/server.rb', line 36

def alive?
  return true if @sock && !@sock.closed?
  return false if @down_at && @down_at == Time.now.to_i

  begin
    # try to reconnect at most once per second
    connection
    true
  rescue Dalli::NetworkError => dne
    Dalli.logger.info("Unable to connect to #{hostname}:#{port}: #{dne.message}")
    down!
  end
end

#closeObject



50
51
52
# File 'lib/dalli/server.rb', line 50

def close
  (@sock.close rescue nil; @sock = nil) if @sock
end

#lock!Object



54
55
# File 'lib/dalli/server.rb', line 54

def lock!
end

#request(op, *args) ⇒ Object

Chokepoint method for instrumentation



22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/dalli/server.rb', line 22

def request(op, *args)
  begin
    send(op, *args)
  rescue Dalli::NetworkError
    raise
  rescue Dalli::DalliError
    raise
  rescue Exception => ex
    Dalli.logger.error "Unexpected exception in Dalli: #{ex.class.name}: #{ex.message}"
    Dalli.logger.error ex.backtrace.join("\n\t")
    down!
  end
end

#unlock!Object



57
58
# File 'lib/dalli/server.rb', line 57

def unlock!
end