mirror of
https://github.com/jimeh/redistat.git
synced 2026-02-19 13:26:39 +00:00
18 lines
234 B
Ruby
18 lines
234 B
Ruby
module Redistat
|
|
class Scope
|
|
include Database
|
|
|
|
def initialize(name)
|
|
@name = name.to_s
|
|
end
|
|
|
|
def to_s
|
|
@name
|
|
end
|
|
|
|
def next_id
|
|
db.incr("#{@name}#{KEY_NEXT_ID}")
|
|
end
|
|
|
|
end
|
|
end |