Network Socket Programming: Building High-Performance Servers and Client Applications on Linux (eBook)

Network Socket Programming: Building High-Performance Servers and Client Applications on Linux (eBook)

Nathan Colevar
Nathan Colevar
Prezzo:
€ 5,99
Compra EPUB
Prezzo:
€ 5,99
Compra EPUB

Formato

:
EPUB
Cloud: Scopri di più
Compatibilità: Tutti i dispositivi
Lingua: Inglese
Editore: Nathan Colevar
Codice EAN: 9798233524929
Anno pubblicazione: 2026
Scopri QUI come leggere i tuoi eBook
Abbonati a Kobo Plus per avere accesso illimitato a migliaia di eBook

Note legali

NOTE LEGALI

a) Garanzia legale, Pagamenti, Consegne, Diritto di recesso
b) Informazioni sul prezzo
Il prezzo barrato corrisponde al prezzo di vendita al pubblico al lordo di IVA e al netto delle spese di spedizione
Il prezzo barrato dei libri italiani corrisponde al prezzo di copertina.
I libri in inglese di Libraccio sono di provenienza americana o inglese.
Libraccio riceve quotidianamente i prodotti dagli USA e dalla Gran Bretagna, pagandone i costi di importazione, spedizione in Italia ecc.
Il prezzo in EURO è fissato da Libraccio e, in alcuni casi, può discostarsi leggermente dal cambio dollaro/euro o sterlina/euro del giorno. Il prezzo che pagherai sarà quello in EURO al momento della conferma dell'ordine.
In ogni caso potrai verificare la convenienza dei nostri prezzi rispetto ad altri siti italiani e, in moltissimi casi, anche rispetto all'acquisto su siti americani o inglesi.
c) Disponibilità
I termini relativi alla disponibilità dei prodotti sono indicati nelle Condizioni generali di vendita.

Disponibilità immediata
L'articolo è immediatamente disponibile presso Libraccio e saremo in grado di procedere con la spedizione entro un giorno lavorativo.
Nota: La disponibilità prevista fa riferimento a singole disponibilità.

Disponibile in giorni o settimane (ad es. "3-5-10 giorni", "4-5 settimane" )
L'articolo sarà disponibile entro le tempistiche indicate, necessarie per ricevere l'articolo dai nostri fornitori e preparare la spedizione.
Nota: La disponibilità prevista fa riferimento a singole disponibilità.

Prenotazione libri scolastici
Il servizio ti permette di prenotare libri scolastici nuovi che risultano non disponibili al momento dell'acquisto.

Attualmente non disponibile
L'articolo sarà disponibile ma non sappiamo ancora quando. Inserisci la tua mail dalla scheda prodotto attivando il servizio Libraccio “avvisami” e sarai contattato quando sarà ordinabile.

Difficile reperibilità
Abbiamo dei problemi nel reperire il prodotto. Il fornitore non ci dà informazioni sulla sua reperibilità, ma se desideri comunque effettuare l'ordine, cercheremo di averlo nei tempi indicati. Se non sarà possibile, ti avvertiremo via e-mail e l'ordine verrà cancellato.
Chiudi

Descrizione

Master the Machinery of the Internet: A Deep Dive into Linux Kernel Networking and Server Architecture Network programming is often taught as a simple sequence of function calls. A student learns to create a socket, bind it to a port, and accept a client. In a controlled environment, this works flawlessly. In a hostile production environment, it fails. Real-world networks are unpredictable. Latency varies, packets are lost, and clients disappear without warning. If you want to build a server that rivals Nginx or a data store that performs like Redis, you need more than a superficial understanding of the API. You need to master the underlying architecture of the Linux operating system. Network Socket Programming is written for the developer who has moved beyond "Hello World" and is ready to tackle the engineering challenges of building robust, high-performance systems. This book bridges the gap between basic syntax and enterprise-scale architecture, stripping away the abstractions to reveal the mechanics of the TCP/IP stack. Key Topics Covered: The Kernel-User Boundary: Understand the true cost of system calls, context switches, and memory copying. Learn how to minimize overhead using advanced buffering strategies. Concurrency at Scale: Rigorous analysis of I/O models. Move from blocking I/O and process-forking to multi-threading, and finally to the massive scalability of I/O Multiplexing with epoll. Event-Driven Architecture: Build a non-blocking event loop from scratch. Master Edge-Triggered notifications, timer management, and signal integration to handle the C10K problem and beyond. Performance Tuning: Optimize the TCP stack using socket options. Resolve the conflict between Nagle's Algorithm and Delayed ACKs, tune buffer sizes for bandwidth-delay products, and implement keepalives that actually work. Zero-Copy Data Transfer: Eliminate the middleman. Use sendfile, splice, and mmap to move gigabytes of data directly from disk to network without touching user-space memory. Production Readiness: Implement defensive programming to handle malformed packets, prevent file descriptor leaks, and secure your connections with OpenSSL. Future Technologies: Explore the cutting edge of Linux networking, including true asynchronous I/O with io_uring, packet filtering with eBPF/XDP, and the shift to UDP-based HTTP/3 with QUIC. This is not a book of scripts; it is a guide to resource management. It teaches you how to manage CPU cycles, memory pages, and bandwidth efficiently. Whether you are writing a high-frequency trading platform, a custom proxy, or simply want to understand the machinery of the internet, this book provides the engineering decisions required for real-world scale.