Class: Moneta::Adapters::Sequel

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

Overview

Sequel backend

Constant Summary collapse

UniqueConstraintViolation =

Sequel::UniqueConstraintViolation is defined since sequel 3.44.0 older versions raise a Sequel::DatabaseError.

defined?(::Sequel::UniqueConstraintViolation) ? ::Sequel::UniqueConstraintViolation : ::Sequel::DatabaseError

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Defaults

#[], #[]=, #decrement, #features, #fetch, included, #supports?

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`

  • :backend (Sequel connection)

    Use existing backend instance



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

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

Instance Attribute Details

#backendObject (readonly)



15
16
17
# File 'lib/moneta/adapters/sequel.rb', line 15

def backend
  @backend
end

Instance Method Details

#clear(options = {}) ⇒ void

This method returns an undefined value.

Clear all keys in this store

Parameters:

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


96
97
98
99
# File 'lib/moneta/adapters/sequel.rb', line 96

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

#closeObject

Explicitly close the store

Returns:

  • nil



102
103
104
105
# File 'lib/moneta/adapters/sequel.rb', line 102

def close
  @backend.disconnect
  nil
end

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

Store value with key

Parameters:

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

Options Hash (options):

  • :expires (Integer)

    Set expiration time (See Expires)

  • :raw (Boolean)

    Raw access without value transformation (See Transformer)

  • :prefix (String)

    Prefix key (See Transformer)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • value



61
62
63
64
65
66
# File 'lib/moneta/adapters/sequel.rb', line 61

def create(key, value, options = {})
  @table.insert(k: key, v: blob(value))
  true
rescue UniqueConstraintViolation
  false
end

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

Delete the key from the store and return the current value

Parameters:

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

Options Hash (options):

  • :raw (Boolean)

    Raw access without value transformation (See Transformer)

  • :prefix (String)

    Prefix key (See Transformer)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • (Object)

    current value



88
89
90
91
92
93
# File 'lib/moneta/adapters/sequel.rb', line 88

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

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

Note:

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

Atomically increment integer value with key

This method also accepts negative amounts.

Parameters:

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

Options Hash (options):

  • :prefix (String)

    Prefix key (See Transformer)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • (Object)

    value from store



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/moneta/adapters/sequel.rb', line 69

def increment(key, amount = 1, options = {})
  @backend.transaction do
    locked_table = @table.for_update
    if record = locked_table[k: key]
      value = Utils.to_int(record[:v]) + amount
      locked_table.where(k: key).update(v: blob(value.to_s))
      value
    else
      locked_table.insert(k: key, v: blob(amount.to_s))
      amount
    end
  end
rescue ::Sequel::DatabaseError
  # Concurrent modification might throw a bunch of different errors
  tries ||= 0
  (tries += 1) < 10 ? retry : raise
end

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

Exists the value with key

Parameters:

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

Options Hash (options):

  • :expires (Integer)

    Update expiration time (See Expires)

  • :prefix (String)

    Prefix key (See Transformer)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • (Boolean)


37
38
39
# File 'lib/moneta/adapters/sequel.rb', line 37

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: {})

Options Hash (options):

  • :expires (Integer)

    Update expiration time (See Expires)

  • :raw (Boolean)

    Raw access without value transformation (See Transformer)

  • :prefix (String)

    Prefix key (See Transformer)

  • :sync (Boolean)

    Synchronized load (Cache reloads from adapter, Daybreak syncs with file)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • (Object)

    value



42
43
44
45
# File 'lib/moneta/adapters/sequel.rb', line 42

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: {})

Options Hash (options):

  • :expires (Integer)

    Set expiration time (See Expires)

  • :raw (Boolean)

    Raw access without value transformation (See Transformer)

  • :prefix (String)

    Prefix key (See Transformer)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • value



48
49
50
51
52
53
54
55
56
57
58
# File 'lib/moneta/adapters/sequel.rb', line 48

def store(key, value, options = {})
  begin
    @table.insert(k: key, v: blob(value))
  rescue UniqueConstraintViolation
    @table.where(k: key).update(v: blob(value))
  end
  value
rescue ::Sequel::DatabaseError
  tries ||= 0
  (tries += 1) < 10 ? retry : raise
end