up vote 5 down vote favorite
4
share [g+] share [fb]

I don't know if I'm just looking in the wrong places here or what, but does active record have a method for retrieving a random object?

Something like?

@user = User.random

Or... well since that method doesn't exist is there some amazing "Rails Way" of doing this, I always seem to be to verbose. I'm using mysql as well.

link|improve this question

feedback

4 Answers

up vote 16 down vote accepted

Most of the examples I've seen that do this end up counting the rows in the table, then generating a random number to choose one. This is because alternatives such as RAND() are inefficient in that they actually get every row and assign them a random number, or so I've read (and are database specific I think).

You can add a method like the one I found here.

module ActiveRecord
  class Base
    def self.random
      if (c = count) != 0
        find(:first, :offset =>rand(c))
      end
    end
  end
end

This will make it so any Model you use has a method called random which works in the way I described above: generates a random number within the count of the rows in the table, then fetches the row associated with that random number. So basically, you're only doing one fetch which is what you probably prefer :)

You can also take a look at this rails plugin.

link|improve this answer
2  
This is nice. I like it because it is additionally not ORM specific. Nice work, thanks! – Joseph Silvashy Sep 4 '10 at 7:53
feedback

I'd use a named scope. Just throw this into your User model.

named_scope :random, :order=>'RAND()', :limit=>1

The random function isn't the same in each database though. SQLite and others use RANDOM() but you'll need to use RAND() for MySQL.

If you'd like to be able to grab more than one random row you can try this.

named_scope :random, lambda { |*args| { :order=>'RAND()', :limit=>args[0] || 1 } }

If you call User.random it will default to 1 but you can also call User.random(3) if you want more than one.

link|improve this answer
I've heard RAND() is really slow because it first fetches every record and then somehow chooses one, but I'm probably wrong. – Jorge Israel Peña Sep 4 '10 at 5:58
@Blaenk: It is very slow on MySQL. I do not know about the implementation though. – Swanand Sep 4 '10 at 6:44
+1 for making a scope, I like that too. – Joseph Silvashy Sep 4 '10 at 7:53
It also doesn't work on postgres. – Omar Qureshi Sep 4 '10 at 8:08
feedback

We found that offsets ran very slowly on MySql for a large table. Instead of using offset like:

model.find(:first, :offset =>rand(c))

...we found the following technique ran more than 10x faster (fixed off by 1):

max_id = Model.maximum("id")
min_id = Model.minimum("id")
id_range = max_id - min_id + 1
random_id = min_id + rand(id_range).to_i
Model.find(:first, :conditions => "id >= #{random_id}", :limit => 1, :order => "id")
link|improve this answer
The last line is a little too verbose. This does the same thing (in Rails 3): Model.where("id >= #{random_id}").first – Nate Bird Nov 16 '11 at 2:10
feedback

If you would need a random record but only within certain criteria you could use "random_where" from this code:

module ActiveRecord
  class Base
    def self.random
      if (c = count) != 0
        find(:first, :offset =>rand(c))
      end
    end

    def self.random_where(*params)
      if (c = where(*params).count) != 0
        where(*params).find(:first, :offset =>rand(c))
      end
    end

  end
end

For e.g :

@user = User.random_where("active = 1")

This function is very useful for displaying random products based on some additional criteria

link|improve this answer
Rails 3 and active relation chaining takes care of this case. You could do just User.random.where('active = 1') without the need for an additional global method. – Nate Bird Nov 15 '11 at 19:25
"find" method doesn't return Relation object, it returns either model object or an array :) , but! you could do this User.where('active = 1').random and this will work just fine... I don't know why I missed it :) – Pawel Barcik Nov 15 '11 at 23:35
You are correct. Good eye. I thought one thing and typed another. :-) – Nate Bird Nov 16 '11 at 2:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.