You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, producers and consumers all share a single connection to the Memphis broker. The user creates a Memphis object and calls connect() to establish a connection. When producers and consumers are created with Memphis.producer() and Memphis.consumer(), the connection object is passed to the constructors of the Producer and Consumer classes.
Should we be doing this? Or should each new producer or consumer get its own connection?
The text was updated successfully, but these errors were encountered:
Currently, producers and consumers all share a single connection to the Memphis broker. The user creates a
Memphis
object and callsconnect()
to establish a connection. When producers and consumers are created withMemphis.producer()
andMemphis.consumer()
, the connection object is passed to the constructors of the Producer and Consumer classes.Should we be doing this? Or should each new producer or consumer get its own connection?
The text was updated successfully, but these errors were encountered: