-
I have a scenario where data is coming into a Jetstream where consumer will consume and save data to a Database, concurrently is it possible to have a copy available to a browser. How do I achieve this? Do I need to initiate a pub/sub in the Jetstream consume foreach? |
Beta Was this translation helpful? Give feedback.
Answered by
mtmk
Apr 25, 2024
Replies: 1 comment
-
You can publish to some other topic, that's possible. If you do that you should probably have a different connection to avoid blocking the same TCP connection. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
alberk8
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can publish to some other topic, that's possible. If you do that you should probably have a different connection to avoid blocking the same TCP connection.