forked from macournoyer/thin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
37 lines (25 loc) · 977 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
== Thin
Tiny, fast & funny HTTP server
=== Why another web server ?
Thin:
* is 10% faster then Mongrel behind a load balancer like Nginx.
* takes around 2MB less memory then Mongrel.
* is 100% Ruby, no C extension.
* is self contain, no dependencies.
=== What's the catch ?
The secret of Thin is that no threads are used. Everything is running in a single thread. For single threaded frameworks like Rails this makes sense, but might not be the case for others.
=== Installation
sudo gem install thin --source http://code.macournoyer.com
=== Usage
In your Rails app directory:
thin
Run: thin -h to get more options
=== License
Ruby License : http://www.ruby-lang.org/en/LICENSE.txt
=== Credits
Lots of the code was inspired (or stolen entirely) from Mongrel http://mongrel.rubyforge.org/ by Zed Shaw.
Thin was created by:
Marc-Andre Cournoyer
http://macournoyer.com
Please send me your comments, bug reports or love letters by email.