README.asciidoc 1.0 KB

123456789101112131415161718192021222324252627282930
  1. = Ranch
  2. Ranch is a socket acceptor pool for TCP protocols.
  3. == Goals
  4. Ranch aims to provide everything you need to accept TCP connections with
  5. a **small** code base and **low latency** while being easy to use directly
  6. as an application or to **embed** into your own.
  7. Ranch provides a **modular** design, letting you choose which transport
  8. and protocol are going to be used for a particular listener. Listeners
  9. accept and manage connections on one port, and include facilities to
  10. limit the number of **concurrent** connections. Connections are sorted
  11. into **pools**, each pool having a different configurable limit.
  12. Ranch also allows you to **upgrade** the acceptor pool without having
  13. to close any of the currently opened sockets.
  14. == Getting started
  15. * link:doc/src/guide/book.asciidoc[Read the guide]
  16. * link:doc/src/manual/[Check the manual]
  17. * Look at the examples in the `examples/` directory
  18. == Support
  19. * Official IRC Channel: #ninenines on irc.freenode.net
  20. * http://lists.ninenines.eu[Mailing Lists]
  21. * http://ninenines.eu/support[Commercial Support]