rust-nostr/nostr

Multiple subscriptions on same event will not be notifition RelayPoolNotification::Message

Lz020316 opened this issue · 3 comments

I have been using it for a while. Thanks for the open source of such a good nostr library. I found a little problem when using subscription these days.
When I have a client and set database, I initiated two identical subscriptions. When listening to RelayPoolNotification::Message, I can only receive 1 message. I think I should receive 2 messages.
Why?

  1. I followed up the source code and found that the database query determines whether the received message already exists in the database, and determines whether the message needs to be sent.
    Here I think it can be changed to determine whether there is the same data in the database and whether it needs to be stored, instead of controlling its sending of Message. I think it should not be intercepted.
  2. I tried different situations. For example, in the case of multiple clients, I initiated different subscriptions. The data received at that time may be cross-linked, and the data will be lost here and subsequent business processing cannot be done.

I cannot handle the above problems in the function passed in by client.handle_notifications.
I hope to discuss this issue. Thank you very much
@yukibtc
Similar issue #423

Yes, @yukibtc plz provide a method that allows a subscription receive events just the same as what we get in wss connection (maybe remove duplications in the same sub)

Now I have to manually test the event against all my subscriptions and get notified after, It's not convenient

Ok, thanks for feedback. From a578bc8 commit the RelayPoolNotification::Message variant it's always sent, also when using a persistent database and the event is already stored. Let me know if there are issues.