Forum: Ruby on Rails ActiveRecord method

Posted by Yusuke Enomoto (Guest)
on 2012-07-04 08:58
(Received via mailing list)
Hello.I have a question.  I am making chat application to practice RoR.

I have three models. User, Chat, and Message.
The relationship is that User has many chats(it means chat's host) and 
many
message,s  Chat has many messages.

Now I want to create a lobby page like this.
http://freezing-sword-4391.herokuapp.com/chat/lobby

This page shows all chats sorted by the last message's created_at. each
chat shows who is chat's host, and what the last message is.

Is there any good way to get resource by ActiveRecord's method?

Besides, the amount of messages will be huge,so is there good way to get
all chats which have the last message by loading LIMIT 1 message?
Posted by Colin Law (Guest)
on 2012-07-04 10:23
(Received via mailing list)
On 3 July 2012 15:56, Yusuke Enomoto <mosaafi@gmail.com> wrote:
> shows who is chat's host, and what the last message is.
>
> Is there any good way to get resource by ActiveRecord's method?

Sorry, I don't understand the question.
Have you worked right through some tutorials (railstutorial is good
and is free to use online) to understand the basics of rails?  If not
then I suggest you do this.

>
> Besides, the amount of messages will be huge,so is there good way to get all
> chats which have the last message by loading LIMIT 1 message?

You can fetch just the first record of a query by using .first

Colin
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.