`
Hooopo
  • 浏览: 335376 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Memoization in Ruby

    博客分类:
  • Ruby
阅读更多
这里的Memoization就是将ruby的方法或lambda返回值缓存起来的技术。

缓存方法结果:

举个最简单常用的例子:
class ApplicationController < ActionController::Base  
    def current_user  
        User.find(session[:user_id])  
    end  
end 

vs.
class ApplicationController < ActionController::Base  
    def current_user  
        @current_user ||= User.find(session[:user_id]) 
    end  
end  


下面代码的好处显而易见,在一次请求中最多只调用一次取session和查db操作。

||=这个操作适用于单行赋值操作。是ruby的惯用法之一,一般情况下ruby的||=就可以解决类似的缓存功能。但是情况并不是那么简单,看下面代码:
def may_i_help_u?
  @result ||= begin
      #此处是一个耗时很长的判断。。
      puts "我被执行了!"
      false
    end
end


连续两次调用该方法:
may_i_help_u? #=> 我被执行了!.
may_i_help_u? #=> 我被执行了!


由于||=操作的特性,这里对nil和false返回就不能做缓存了。。还有一个缺点就是不能缓存带参数的方法。。

更通用的memoization:

def some_method(*args)
  @some_method ||= {}
  @some_method[args] ||= (
    #这里要等很久
  )
end


用方法名对应的实例变量存储结果集,结果集为ruby的hash,不同的参数对应相应的返回值。
这个实现虽然支持了参数形式,缺点同样是不能缓存nil和false返回值。

继续改造:

def some_method(*args)
  @some_method ||= {}
  return @some_method[args] if @some_method.has_key?(args)
  
  @some_method[args] = (
    #这里要等很久
  )
end


嗯,可以缓存nil或false返回值了,也可以支持多参数了。不过如果每个方法里这么写也有点烦躁。。

还好ActiveSupport已经写好了这个扩展,使用起来也很方便:
extend ActiveSupport::Memoizable

def zipcode_and_name
  "#{zipcode} #{name}"
end
memoize :zipcode_and_name


Memoization类方法也很简单,ruby里类方法只不过是Class的实例,只需打开metaclass:

class << self
  extend ActiveSupport::Memoizable

  def a_class_method
    # some code
  end
  memoize :a_class_method
end



ActiveSupport::Memoizable的实现方式和上面的思路一样,不过用了很多元编程技巧,使用起来才这么方便。
PS:最近面试总有些面试官喜欢问元编程,问神马是元编程,ruby里怎样元编程。。答案无非是“程序运行时动态改变自身”“method_missing、各种eval、define_method、反射等等”
我觉得还不如找些简单功能说说实现方案/思路来的实在。。

这个memoizable同样都不能正确处理带block参数的方法。因为这个memoization本身就不是万金油,也不能滥用。。特别是当方法参数和返回不是一一映射时,比如这两个方法:

随机数:
def rank(n)
 rand(n*n)
end


与动态数据紧密相关的:
def age
  today = Date.today
  today.year - birth_date.year + (today.month - birth_date.month + ((today.day - birth_date.day) < 0 ? -1 : 0) < 0 ? -1 : 0)
end



缓存Proc/lambda结果:

Via:《Ruby编程语言》
module Functional
  def memoize
    cache = {}
    lambda {|*args|
      unless cache.has_key? args
        cache[args] = self[*args]
      end
      cache[args]
   }
  end
  alias +@ memoize

end

Proc.send(:include, Functional)

fac = lambda{|x| return 1 if x == 0; x * fac[x - 1];}.memoize
#或fac = +lambda{|x| return 1 if x == 0; x * fac[x - 1];}



ruby的Hash是个好东西,可以传递Proc做参数,并且缓存结果。
引用
Hash 映射和 Proc 映射区别在于: Hash 带有缓存机制,而 Proc 不缓存结果。

更多关于Proc memoize的内容见NS的这篇:http://www.iteye.com/topic/406220


分享到:
评论
7 楼 orcl_zhang 2010-12-08  
activesupport/lib/active_support/memoizable.rb
6 楼 wxz125627771 2010-11-20  
ray_linn 写道
=java里方法的cache吧?适用于p=f(x),当x既定时,p不变。
5 楼 ywencn 2010-11-19  
Hooopo又调皮了.. 送精华一枚...
4 楼 ray_linn 2010-11-18  
=java里方法的cache吧?适用于p=f(x),当x既定时,p不变。
3 楼 sina2009 2010-11-18  
收藏起....
2 楼 jinleileiking 2010-11-18  
hoooopoooooo 你说的东西,我看不懂!(也没仔细看。。。。)
1 楼 fireflyman 2010-11-15  
Hooopo总算复活了

相关推荐

    Exercism-exercises-in-Ruby.-ruby.zip

    Exercism_exercises_in_Ruby._ruby.zip Exercism_exercises_in_Ruby._ruby.zip Exercism_exercises_in_Ruby._ruby.zip Exercism_exercises_in_Ruby._ruby.zip Exercism_exercises_in_Ruby._ruby.zip Exercism_...

    ruby面向对象设计 Practical Object-Oriented Design in Ruby

    本书《Ruby面向对象设计:Practical Object-Oriented Design in Ruby》是一本专注于Ruby编程语言中面向对象设计原则和技术的书籍。作者Sandi Metz在书中讲述了如何应用敏捷方法来设计高质量、易于维护和扩展的面向...

    Data Structures and Algorithms in Ruby mobi

    Data Structures and Algorithms in Ruby 英文mobi 本资源转载自网络,如有侵权,请联系上传者或csdn删除 查看此书详细信息请在美国亚马逊官网搜索此书

    Data Structures and Algorithms in Ruby azw3

    Data Structures and Algorithms in Ruby 英文azw3 本资源转载自网络,如有侵权,请联系上传者或csdn删除 查看此书详细信息请在美国亚马逊官网搜索此书

    Design.Patterns.in.Ruby

    Addison.Wesley.Design.Patterns.in.Ruby.Dec.2007 高清PDF英文版

    Test Driven Development in Ruby:

    Test Driven Development in Ruby: A Practical Introduction to TDD Using Problem and Solution Domain Analysis by Bala Paranj English | 5 Apr. 2017 | ISBN: 1484226372 | 288 Pages | PDF | 5.32 MB Learn ...

    Ruby In a Nutshell

    《Ruby in a Nutshell》是一本面向初学者和有经验的程序员的快速参考指南,它深入浅出地介绍了Ruby编程语言的核心概念和语法。Ruby是一种动态、面向对象的脚本语言,以其简洁、优雅的代码风格和强大的元编程能力而...

    Practical Object Oriented Design in Ruby 新版 实战ruby面向对象设计

    《Practical Object-Oriented Design in Ruby 新版 实战ruby面向对象设计》是一本非常受欢迎的编程书籍,它不仅是学习Ruby语言的重要参考资料,也是深入理解面向对象编程(OOP)技术不可或缺的宝贵资料。这本书由于...

    Programming Interview Problems and Algorithms in Ruby

    Programming Interview Problems and Algorithms in Ruby by Zachary Paul English | April 17, 2016 | ASIN: B01EGILLLS | 177 Pages The book covers a large number of the most common interview problems, as ...

    Build.Awesome.Command-Line.Applications.in.Ruby

    Build.Awesome.Command-Line.Applications.in.Ruby

    Build Awesome Command-Line Applications in Ruby

    - **标题**:“Build Awesome Command-Line Applications in Ruby”(构建卓越的Ruby命令行应用) - **含义**:本书旨在教授读者如何利用Ruby编程语言开发高效且用户友好的命令行应用程序。 - **目标受众**:面向...

    Design Patterns in Ruby Dec 2007.rar

    《Design Patterns in Ruby Dec 2007》是关于Ruby编程语言中设计模式的一份珍贵资料,这份2007年发布的PDF文档深入探讨了如何在Ruby语言中应用经典的设计模式。设计模式是软件工程中经过实践证明的有效解决方案模板...

    Programming Ruby

    Like Smalltalk, it is dynamically typed (as opposed to Java or C++), but unlike Smalltalk, Ruby features the same conveniences found in modern scripting languages such as Perl and Python. The ...

    MetaProgramming in Ruby系列教程的中译版

    MetaProgramming in Ruby系列教程的中译版。 uby是动态的、魔幻而有趣的。而元编程(Metaprogramming)技术在Ruby中的应用也让我大开眼界,虽然以前也有浅显地介绍反射机制(Reflection),但我仍然觉得才疏学浅,不...

    Data Structures and Algorithms in Ruby epub

    Data Structures and Algorithms in Ruby 英文epub 本资源转载自网络,如有侵权,请联系上传者或csdn删除 查看此书详细信息请在美国亚马逊官网搜索此书

    Design pattern in ruby

    ruby 设计模式,针对ruby语言的特点对设计模式做了很好的阐述

Global site tag (gtag.js) - Google Analytics