Module: Von::Counters::Commands

Included in:
Best, Current, Period, Total
Defined in:
lib/von/counters/commands.rb

Instance Method Summary collapse

Instance Method Details

#hdel(*args) ⇒ Object



36
37
38
# File 'lib/von/counters/commands.rb', line 36

def hdel(*args)
  Von.connection.hdel(*args)
end

#hget(*args) ⇒ Object



4
5
6
# File 'lib/von/counters/commands.rb', line 4

def hget(*args)
  Von.connection.hget(*args)
end

#hgetall(*args) ⇒ Object



8
9
10
# File 'lib/von/counters/commands.rb', line 8

def hgetall(*args)
  Von.connection.hgetall(*args)
end

#hincrby(*args) ⇒ Object



12
13
14
# File 'lib/von/counters/commands.rb', line 12

def hincrby(*args)
  Von.connection.hincrby(*args)
end

#hset(*args) ⇒ Object



16
17
18
# File 'lib/von/counters/commands.rb', line 16

def hset(*args)
  Von.connection.hset(*args)
end

#llen(*args) ⇒ Object



28
29
30
# File 'lib/von/counters/commands.rb', line 28

def llen(*args)
  Von.connection.llen(*args)
end

#lpop(*args) ⇒ Object



32
33
34
# File 'lib/von/counters/commands.rb', line 32

def lpop(*args)
  Von.connection.lpop(*args)
end

#lrange(*args) ⇒ Object



20
21
22
# File 'lib/von/counters/commands.rb', line 20

def lrange(*args)
  Von.connection.lrange(*args)
end

#rpush(*args) ⇒ Object



24
25
26
# File 'lib/von/counters/commands.rb', line 24

def rpush(*args)
  Von.connection.rpush(*args)
end