Aaron2Ti / memor

Simple memoize function without alias method chain

Home Page:https://rubygems.org/gems/memor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Memor

USAGE

This lib has one utility method called memor which takes binding as an argument, see the following example:

  require 'memor'

  class Foo
    include Memor

    attr_accessor :age

    def slow_method1
      memor binding do
        # slow stuff
      end
    end

    def slow_method2(a, b)
      memor binding do
        # slow stuff
      end
    end

    def slow_method3(a, *args)
      memor binding do
        # slow stuff
      end
    end

    def double_age
      # this block would explicitly depend on the 'age' state of current instance
      memor binding, :age do
        age * 2
      end
    end

  end

  foo = Foo.new

  foo.age = 2
  foo.double_age # 4

  foo.age = 3
  foo.double_age # 6

Tested in ruby 1.9.3, 2.0.0 and 2.1.1 Build Status

About

Simple memoize function without alias method chain

https://rubygems.org/gems/memor

License:MIT License


Languages

Language:Ruby 100.0%