status update message

This commit is contained in:
kaichaosun 2024-09-26 15:18:25 +08:00
parent 96f009f521
commit b6d3d39dc2
No known key found for this signature in database
GPG Key ID: 223E0F992F4F03BF
1 changed files with 14 additions and 1 deletions

View File

@ -157,7 +157,20 @@ User can enable periodically backup and set the intervals as needed. Currently,
### Status Update Messages
Users might receive status update messages for themselves, which should be filtered out to avoid unnecessary bandwidth usage.
User sends status update messages to the global shard every a few minutes. With the increase of users, the traffic can be heavy.
**Option 1**
Favor lightpush and filter protocol for such messages.
**Option 2**
Don't broadcast the message via Waku pubsub protocol, instead use p2p connection (WebRTC) directly to the contacts for routing messages.
If the status update message is for a community, it should bradcast to community assigned shard.
_Concerns:_
- it may require a significant amount of work to implement the p2p connection between contacts.
## Summary