Class: Moneta::Adapters::Sequel

Inherits:
Object
  • Object
show all
Includes:
Defaults
Defined in:
lib/moneta/adapters/sequel.rb

Overview

Sequel backend

Instance Method Summary collapse

Methods included from Defaults

#[], #[]=, #close, #decrement, #fetch

Methods included from OptionSupport

#expires, #prefix, #raw, #with

Constructor Details

#initialize(options = {}) ⇒ Sequel

Returns a new instance of Sequel.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :db (String)

    Sequel database

  • :table (String/Symbol) — default: :moneta

    Table name

  • All (Object)

    other options passed to ‘Sequel#connect`

Raises:

  • (ArgumentError)


14
15
16
17
18
19
20
21
22
23
# File 'lib/moneta/adapters/sequel.rb', line 14

def initialize(options = {})
  raise ArgumentError, 'Option :db is required' unless db = options.delete(:db)
  table = options.delete(:table) || :moneta
  @db = ::Sequel.connect(db, options)
  @db.create_table?(table) do
    String :k, :null => false, :primary_key => true
    String :v
  end
  @table = @db[table]
end

Instance Method Details

#clear(options = {}) ⇒ void

This method returns an undefined value.

Clear all keys in this store

Parameters:

  • options (Hash) (defaults to: {})


77
78
79
80
# File 'lib/moneta/adapters/sequel.rb', line 77

def clear(options = {})
  @table.delete
  self
end

#delete(key, options = {}) ⇒ Object

Delete the key from the store and return the current value

Parameters:

  • key (Object)
  • options (Hash) (defaults to: {})

Returns:

  • (Object)

    current value



67
68
69
70
71
72
73
74
# File 'lib/moneta/adapters/sequel.rb', line 67

def delete(key, options = {})
  @db.transaction do
    if value = load(key, options)
      @table.filter(:k => key).delete
      value
    end
  end
end

#increment(key, amount = 1, options = {}) ⇒ Object

Atomically increment integer value with key

Not every Moneta store implements this method, a NotImplementedError if it is not supported.

This method also accepts negative amounts.

Parameters:

  • key (Object)
  • amount (Integer) (defaults to: 1)
  • options (Hash) (defaults to: {})

Returns:

  • (Object)

    value from store



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/moneta/adapters/sequel.rb', line 49

def increment(key, amount = 1, options = {})
  @db.transaction do
    locked_table = @table.for_update
    if record = locked_table[:k => key]
      value = record[:v]
      intvalue = value.to_i
      raise 'Tried to increment non integer value' unless value == nil || intvalue.to_s == value.to_s
      intvalue += amount
      locked_table.update(:k => key, :v => intvalue.to_s)
      intvalue
    else
      locked_table.insert(:k => key, :v => amount.to_s)
      amount
    end
  end
end

#key?(key, options = {}) ⇒ Boolean

Exists the value with key

Parameters:

  • key (Object)
  • options (Hash) (defaults to: {})

Returns:

  • (Boolean)


26
27
28
# File 'lib/moneta/adapters/sequel.rb', line 26

def key?(key, options = {})
  @table[:k => key] != nil
end

#load(key, options = {}) ⇒ Object

Fetch value with key. Return nil if the key doesn’t exist

Parameters:

  • key (Object)
  • options (Hash) (defaults to: {})

Returns:

  • (Object)

    value



31
32
33
34
# File 'lib/moneta/adapters/sequel.rb', line 31

def load(key, options = {})
  record = @table[:k => key]
  record && record[:v]
end

#store(key, value, options = {}) ⇒ Object

Store value with key

Parameters:

  • key (Object)
  • value (Object)
  • options (Hash) (defaults to: {})

Returns:

  • value



37
38
39
40
41
42
43
44
45
46
# File 'lib/moneta/adapters/sequel.rb', line 37

def store(key, value, options = {})
  @db.transaction do
    if key?(key, options)
      @table.update(:k => key, :v => value)
    else
      @table.insert(:k => key, :v => value)
    end
    value
  end
end