In RabbitMQ ist eine Connection eine TCP-Verbindung zum Broker, während ein Channel eine leichtgewichtige virtuelle Verbindung innerhalb einer Connection ist. Die ordnungsgemäße Verwendung von Channels (anstelle vieler Connections) ist wichtig für die Effizienz und eine verbreitete Best Practice.
Connections vs Channels
CONNECTION → a TCP connection to the RabbitMQ broker:
→ relatively HEAVY (a real network connection, with overhead to establish/maintain)
CHANNEL → a lightweight, virtual connection MULTIPLEXED over a single TCP connection:
→ many channels share one connection → lightweight; most operations happen on channels
→ publishing, consuming, declaring queues → done via channels
→ one connection can have MANY channels (multiplexing reduces TCP overhead)
