class Corpshort::Backends::Memory

Attributes

Public Class Methods

new() click to toggle source
# File lib/corpshort/backends/memory.rb, line 8
def initialize()
  @lock = Mutex.new
  @links = {}
  @links_by_url = {}
end

Public Instance Methods