Hello guys. I have built a chat app on Supabase but I'm not sure if postgres is good for a realtime chat. My main concerns are about multiple concurrent writing operations in db. For example, if we have 1000 connected users each user has to send last_time active for presence every x seconds. If 1000 users use chat at the same time, the typing function could send 1000 concurrent reqs to db. Aren't these too many requests? Please correct me if I'm wrong.