LazyAttributes
lazy_attributes is an ActiveRecord plugin. lazy_attributes loads lazily specified attributes.
This gem is heavily inspired by lazy_columns.
Supported versions
ActiveRecord 3.2, 4.0, and 4.1
Installation
Add this line to your application's Gemfile:
gem 'lazy_attributes'
And then execute:
$ bundle
Or install it yourself as:
$ gem install lazy_attributes
Usage
In Active Record model, specify attributes that are needed to be loaded
lazyly with lazy_attributes
:
class User < ActiveRecord::Base
lazy_attributes :profile
lazy_attributes :address, :bio
end
When model with lazyly-loaded attributes is associated with another model, you need specify scope for association with '.column_symbols_without_lazy'.
class Group < ActiveRecord::Base
has_many :users, { select(User.column_symbols_without_lazy) }
end
For Rails 3.2, use select
option.
class Group < ActiveRecord::Base
has_many :users, select: User.column_symbols_without_lazy
end
Contributing
- Fork it ( https://github.com/[my-github-username]/lazy_attributes/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request