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
# 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)
  connection
  Dalli.logger.debug { "#{@hostname}:#{@port} running memcached v#{request(: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)


35
36
37
# File 'lib/dalli/server.rb', line 35

def alive?
  @sock && !@sock.closed?
end

#closeObject



39
40
41
# File 'lib/dalli/server.rb', line 39

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

#lock!Object



43
44
# File 'lib/dalli/server.rb', line 43

def lock!
end

#request(op, *args) ⇒ Object

Chokepoint method for instrumentation



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

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



46
47
# File 'lib/dalli/server.rb', line 46

def unlock!
end