I want to instantiate an array that is accesible trough all the application, the array may change while the application is running but it will be re-generated when the application starts again.
I have though about putting that array in the ApplicationController but it will die once the request is over or not ?; and I just need it to populate it once every time the app starts running not every time a controller action is called.
The array is populated from the database and that has to be already loaded.
Thanks in advance for any guidance.
You can create a simple class to keep this information for you. For example, you can add the following to config/initializers/my_keep.rb:
In your application, the first time you call
MyKeep.the_arraythe array will be populated from the database, so you can even do this in the same file or in an after_initialize block in your application.rb file. You’ll then be able to add the the array withMyKeep.add(element)and you’ll be able to get the array value withMyKeep.the_array. This class should not get re-set on every request.