Στο RabbitMQ, μια connection είναι μια TCP σύνδεση στον broker, ενώ ένα channel είναι μια ελαφριά εικονική σύνδεση εντός μιας connection. Η σωστή χρήση των channels (αντί για πολλές connections) είναι σημαντική για την απόδοση και μια κοινή καλή πρακτική.
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)
