Scalability Notes

[Read -> Think -> Write]

August, 2009

Posts
  • Scalability Notes

    I/O Concept - Blocking/Non-Blocking VS Sync/Async

    • 0 Comments
    I/O Concept - Blocking/Non-Blocking VS Sync/Async   These concepts are discussed in the context of WinSock, but the basic ideas can be applied to other I/O types and also on other OS, such as Linux/Unix world as well. I - Blocking V.S. Non-Blocking...
  • Scalability Notes

    Winsock I/O Model - Part II : Implementation

    • 0 Comments
    Winsock I/O Model - Part II : Implementation In the previous post[6] , I summarized several scalable network I/O models in theory. In this article, I will give concrete code to show how to use each model to build a scalable network server...
  • Scalability Notes

    Winsock I/O Model - Part I : Concept

    • 4 Comments
    Winsock I/O Model - Part I : Concept The basic steps to do windows socket programming are simple and straightforward: Server Side Initialize Winsock. Create a socket. Bind the socket. Listen on the socket for a client. Accept a connection from...
  • Scalability Notes

    Inside Scalable I/O Model - In Sync & Async Way

    • 0 Comments
    Inside Scalable I/O Model - In Sync & Async Way   The so called " I/O Model " describes how you write code to accomplish I/O tasks, such as connecting to a server, writing data to disk, receiving data from network etc. Programmatically...
Page 1 of 1 (4 items)