Fix the table name

This commit is contained in:
Pratik Naik
2009-03-14 14:37:08 +00:00
parent f5efe1cf8c
commit f60445940f

View File

@@ -181,7 +181,7 @@ end
But if the total number of rows in the table is very large, the above approach may vary from being under performant to just plain impossible.
This is because +LegacySurvey.all+ makes Active Record fetch _the entire table_, build a model object per row, and keep the entire array in the memory. Sometimes that is just too many objects and demands too much memory.
This is because +User.all+ makes Active Record fetch _the entire table_, build a model object per row, and keep the entire array in the memory. Sometimes that is just too many objects and demands too much memory.
h5. +find_each+