Module: Mongoid::Clients::StorageOptions::ClassMethods

Defined in:
build/mongoid-8.1/lib/mongoid/clients/storage_options.rb

Instance Method Summary collapse

Instance Method Details

#reset_storage_options!Object

Reset the store_in options

Examples:

Reset the store_in options

Model.reset_storage_options!


56
57
58
59
# File 'build/mongoid-8.1/lib/mongoid/clients/storage_options.rb', line 56

def reset_storage_options!
  self.storage_options = storage_options_defaults.dup
  PersistenceContext.clear(self)
end

#storage_options_defaultsHash

Get the default storage options.

Examples:

Get the default storage options.

Model.storage_options_defaults

Returns:

  • (Hash)

    Default storage options.



67
68
69
70
71
72
# File 'build/mongoid-8.1/lib/mongoid/clients/storage_options.rb', line 67

def storage_options_defaults
  {
    collection: name.collectionize.to_sym,
    client: :default
  }
end

#store_in(options) ⇒ Class

Give this model specific custom default storage options.

Examples:

Store this model by default in “artists”

class Band
  include Mongoid::Document
  store_in collection: "artists"
end

Store this model by default in the sharded db.

class Band
  include Mongoid::Document
  store_in database: "echo_shard"
end

Store this model by default in a different client.

class Band
  include Mongoid::Document
  store_in client: "analytics"
end

Store this model with a combination of options.

class Band
  include Mongoid::Document
  store_in collection: "artists", database: "music"
end

Parameters:

  • options (Hash)

    The storage options.

Options Hash (options):

  • :collection (String | Symbol)

    The collection name.

  • :database (String | Symbol)

    The database name.

  • :client (String | Symbol)

    The client name.

Returns:

  • (Class)

    The model class.



47
48
49
50
# File 'build/mongoid-8.1/lib/mongoid/clients/storage_options.rb', line 47

def store_in(options)
  Validators::Storage.validate(self, options)
  self.storage_options = self.storage_options.merge(options)
end