4 projects tagged "Server"
Aftpd is an FTP server for anonymous access designed for Unix-like operating systems. It uses an asynchronous model of connection processing and provides service for all users within a single process; can use multiple threads to run more efficiently on multi-core systems, with each thread serving multiple clients simultaneously; uses effective mechanisms of transferring files, minimizing copying of data in RAM (sendfile or a combination of the system calls mmap/writev); uses effective event notification schemes (kqueue on FreeBSD and epoll on Linux); uses poll or select in older systems; and supports IPv6. For safety, it works as an unprivileged user and uses chroot.
Java Gearman Service is a Java implementation of the gearman service, which provides a generic application framework that farms work out to other machines or processes that are better suited to do the work. It allows you to do work in parallel, to load balance processing, and to call functions in other languages. It can be used in a variety of applications, from high-availability Web sites to the transport of database replication events.
libnode is a C++ implementation of Node.js. Just like Node.js, libnode provides non-blocking I/O, which enables you to develop scalable Web applications in C++. The memory management of libnode is automatic, based on either shared_ptr or bdw-gc. libnode is good to use on embedded devices because its system resource consumption is lower than Node.js.