class LRUHash

def delete(key)

def delete(key)
  @lock.synchronize do
    @table.delete(key)
  end
end