X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/efc296a1d6068f4e0cde584415d4c14a963c175c..49128f0b9da725de992e427fa341a837bcc2991b:/doc/EventLibray.html diff --git a/doc/EventLibray.html b/doc/EventLibray.html new file mode 100644 index 00000000..45b90003 --- /dev/null +++ b/doc/EventLibray.html @@ -0,0 +1,44 @@ + + + + + + + +
+ + + +
+
+ +EventLibray: Contents
  Event Library
    Why is an Event Library needed at all? +
+ +

EventLibray

+ +
+ +
+ +
+ +

Event Library

Why is an Event Library needed at all?

Let us figure it out through a series of Q&As.

Q: What do you expect a network server to be doing all the time? <br/> +A: Watch for inbound connections on the port its listening and accept them.

Q: Calling accept yields a descriptor. What do I do with it?<br/> +A: Save the descriptor and do a non-blocking read/write operation on it.

Q: Why does the read/write have to be non-blocking?<br/> +A: If the file operation ( even a socket in Unix is a file ) is blocking how could the server for example accept other connection requests when its blocked in a file I/O operation.

Q: I guess I have to do many such non-blocking operations on the socket to see when it's ready. Am I right?<br/> +A: Yes. That is what an event library does for you. Now you get it.

Q: How do Event Libraries do what they do?<br/> +A: They use the operating system's polling facility along with timers.

Q: So are there any open source event libraries that do what you just described? <br/> +A: Yes. Libevent and Libev are two such event libraries that I can recall off the top of my head.

Q: Does Redis use such open source event libraries for handling socket I/O?<br/> +A: No. For various reasons Redis uses its own event library. +
+ +
+
+ + +