Aaric Pittman

Results 5 comments of Aaric Pittman

This is the rough structure. ``` development: test: production: second_base: development: test: production: ```

I have it working with something like the following in my migration class. ``` class PrimaryServerBase < ActiveRecord::Base self.abstract_class = true establish_connection Rails.application.config.database_configuration[Rails.env] end class PrimaryServerModel < PrimaryServerBase end ```

Any reasons that would be a bad idea?

Sure, The client used by our Rails app is instantiated with `use_ldd: true`. We have code in our app that was intended to clear the in-memory cache. There was some...