Module: MongoMapper::Plugins::Stats::ClassMethods

Defined in:
lib/mongo_mapper/plugins/stats.rb

Instance Method Summary collapse

Instance Method Details

#statsObject



9
10
11
12
13
14
15
# File 'lib/mongo_mapper/plugins/stats.rb', line 9

def stats
  stats = collection.stats

  Struct.new(*stats.keys.collect { |key| key.underscore.to_sym }).new(*stats.values)
rescue
  nil
end