c-
Cut-through switching, also called cut-through forwarding is a method for packet switching systems, wherein the switch starts forwarding a frame (or packet) before the whole frame has been received, normally as soon as the destination address and outgoing interface is determined. Compared to store and forward, this technique reduces latency through the switch and relies on the destination devices for error handling.
Fragment free is a variation on cut-through switching that partially addresses the frame dropping issue by assuring that collision fragments are not forwarded. Fragment free will hold the frame until the first 64 bytes are read from the source to detect a collision before forwarding. This is only useful if there is a chance of a collision on the source port.
In Store and forward, information is sent to an intermediate station where it is kept and sent at a later time to the final destination. The intermediate station, or node in a networking context, verifies the integrity of the message before forwarding it. In general, this technique is used in networks with intermittent connectivity, especially in the wilderness or environments requiring high mobility.
An adaptive switch is a network switch designed to normally operate in cut-through mode but if a port's error rate jumps too high, the switch automatically reconfigures the port to run in store-and-forward mode.
https://en.wikipedia.org/wiki/Adaptive_switching
https://en.wikipedia.org/wiki/Cut-through_switching
https://en.wikipedia.org/wiki/Store_and_forward