Hi i have a database of users in a ruby project and i need to loop through each of them and get their values. How do you loop? I know that you can use
model.find(i)
and get each element but how do you loop till the last element?
|
Hi i have a database of users in a ruby project and i need to loop through each of them and get their values. How do you loop? I know that you can use
and get each element but how do you loop till the last element?
| ||||
|
feedback
|
|
I assume you're using rails & active record. If so, do
or
The former loads all users from the database at once, the latter -- loads records in batches, which is helpful if you have a lot of records. In ruby iterators are used a lot and usually the standard module called Enumerable is used for that: An Introduction to Ruby's Enumerable Module | |||
|
feedback
|
|
As Ross said in his answer But in the case of ActiveRecord you should take a look at the Rails Guide section on Loading in Batches. You could very easily say It's much better to say
And let Active Record look after your memory behind the scenes. | |||
|
feedback
|
|
There are many ways to loops Say you have a users object you can do
this is easiest way to loop other ways could be using for loop, while loop other loops in rails http://www.tutorialspoint.com/ruby/ruby_loops.htm | |||
|
feedback
|