Hacker News new | ask | show | jobs
by liuliu 5829 days ago
why Windows? Redis is a service over socket, thus, you can have a *nix box running Redis and talk to the box with your asp.net/c# I suppose. Windows has a very different socket model, I think that supporting Windows will scarify to much for Redis.
1 comments

Windows has pretty the same socket model, from BSD. The difference is in the I/O event notification facility, for asynchronous network programming one would use "epoll" in Linux, "kqueue" in FreeBSD, they are conceptually pretty similar, while Windows has only the classic "select" and "poll", maybe something new windows-only thing (IOCP?) as well, but who cares.. Free Software rule.
iocp and epoll is the difference I am talking about.