Working with Rails 3.2.1 and Ruby 1.9.3, where is the proper place to initialize a Global constant object such that it is only initialized once when the rails server is started.

Right now I am declaring it as instance object as and it is initialized every time the method is called:

@object_wanted_to_be_global_const = Gemname::GemnameClass.new 'input'

Where is the best place to declare this as a global constant variable?

If declared as a global instead of an instance, how will this affect performance as the variable is accessed on almost every request?

link|improve this question

I'm thinking probably declare it in application_controlller.rb but wouldn't it be reinitialized upon each request still? – rudolph9 Feb 22 at 19:30
feedback

1 Answer

up vote 2 down vote accepted

Put this in an initializer.

And to respect Ruby's convention, capitalize the whole name.

I can't see any performance issue regarding this method.

link|improve this answer
Initialize it in config/initializers/gem_name.rb as $GLOBAL_OBJECT = ...? As well, will you explain how this will affect performance? – rudolph9 Feb 22 at 19:43
you don't need the $. It won't affect performance, it will just be loaded in memory (as are all your i18n values) – apneadiving Feb 22 at 19:57
so ALL_CAPS_VARIABLE -> global variable and constant variable? Is this part of the Ruby language or a convention employed by rails? – rudolph9 Feb 22 at 20:41
Use a constant which will be available everywhere. I never use global variables. – apneadiving Feb 22 at 20:48
So in the ruby language constants are available everywhere? (doesn't that make them global variables?) Or is this a rails convention that any constant defined in the initializer is available everywhere? – rudolph9 Feb 22 at 22:48
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.