Pregunta

He estado tratando de jugar con un módulo de caché global, pero no puedo entender por qué esto no está funcionando.

¿Alguien tiene alguna sugerencia?

Este es el error:

NameError: undefined method `get' for module `Cache'
    from (irb):21:in `alias_method'

... generada por este código:

module Cache
  def self.get
    puts "original"
  end
end

module Cache
  def self.get_modified
    puts "New get"
  end
end

def peek_a_boo
  Cache.module_eval do
    # make :get_not_modified
    alias_method :get_not_modified, :get
    alias_method :get, :get_modified
  end

  Cache.get

  Cache.module_eval do
    alias_method :get, :get_not_modified
  end
end

# test first round
peek_a_boo

# test second round
peek_a_boo
¿Fue útil?

Solución

Las llamadas a alias_method intentará operar en ejemplo métodos. No existe un método instancia con nombre get en su módulo Cache, por lo que falla.

Debido a que desea alias de la clase métodos (en la metaclase de Cache), que tendría que hacer algo como:

class << Cache  # Change context to metaclass of Cache
  alias_method :get_not_modified, :get
  alias_method :get, :get_modified
end

Cache.get

class << Cache  # Change context to metaclass of Cache
  alias_method :get, :get_not_modified
end
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top