liveview-native / elixirconf_chat

ElixirConf 2023 Chat App, built with LiveView Native

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Persist chat messages to db

supernintendo opened this issue · comments

%Chat.Message{}s are currently only stored at runtime via the ElixirconfChat.Chat.Server GenServer which means they get lost when the server is restarted. Add an Oban Job to periodically save all unsaved chat messages to the database. Also make sure that instances of ElixirconfChat.Chat.Server load persisted chat messages on startup.