Is it better to listen on whole table or with filter?
I have created a chat with Supabase and I have a table named "messages". I have set my security policies, so only if the user is added to conversation can read the messages. So, is it better to listen on whole messages table for new updates/inserts or with a filter eg. listen to messages where conversation_id = 5? In first implementation I'll have 1 listener for the user, If i go with the second I'll have listener for each conversation (40-50 listeners)