baklysystems / laravel-chat-messenger

A laravel Chat that is just like facebook chat
MIT License
13 stars 11 forks source link

Reduces memory usage & CPU processing, fix for empty collection return #6

Closed jlozano254 closed 6 years ago

jlozano254 commented 6 years ago

On "messagesWith()":

Isn't necessary to load entire messages into collection. Instead doing that, you can retrieve messages by latest & then take what you need (DB level), then reverse the collection to return to the view.

Also added a simple fix to return an empty collection in case that no conversation found between two users.