在Ruby / Rails中使用全局变量或常量变量?

时间:2012-06-05 16:09:25

标签: ruby-on-rails ruby

假设我们有与memcache或redis的连接...首选哪种风格以及为什么?

MEMCACHE = Memcache.new(...)
REDIS = Redis.new(...)

OR

$memcache = Memcache.new(...)
$redis = Redis.new(...)

3 个答案:

答案 0 :(得分:41)

您可能希望使用Redis.current更多信息here

例如,在初始值设定项中:

Redis.current = Redis.new(host: 'localhost', port: 6379)

然后在你的其他课程中:

def stars
  redis.smembers("stars")
end

private

def redis
  Redis.current
end

答案 1 :(得分:9)

它们不是等同的结构。根据您的应用程序,它们可能是也可能不可互换,但它们在语义上是不同的。

# MEMCACHE is a constant, subject to scoping constraints.
MEMCACHE = Memcache.new(...)

# $memcache is a global variable: declare it anywhere; use it anywhere.
$memcache = Memcache.new(...)

答案 2 :(得分:3)

IMO是一个“常数”,因为它传达了它应该是......不变的。

全球并不意味着他们不应该被改变。