public
Description: New and ultra-turbo-crazy-fast backend for Thin
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin-turbo.git
thin-turbo / README
100644 35 lines (25 sloc) 1.07 kb
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
== Thin-Turbo
New and ultra-turbo-crazy-fast backend for Thin
 
This is an experimental backend for Thin (http://code.macournoyer.com/thin).
It's a complete rewrite in C of the code handling the request and producing the response.
Once this code is proved to be stable it will replace the current backend of Thin. For
now it will be distributed as a separated gem and loaded as "plugin backend" (see Usage).
 
Goals of this rewrite:
* Be as fast as possible
* Call Rack app in a thread
* Remove dependency over EventMachine
* Reduce memory usage
 
=== Installation
 
 sudo gem install thin
 git clone git://github.com/macournoyer/thin-turbo.git
 cd thin-turbo
 rake install
 
=== Usage
 
 thin start -r thin-turbo -b Thin::Backends::Turbo ...
 
=== License
Ruby License, http://www.ruby-lang.org/en/LICENSE.txt.
 
=== Credits
Thin is copyright Marc-Andre Cournoyer <macournoyer@gmail.com>
 
Get help at http://groups.google.com/group/thin-ruby/
Report bugs at http://thin.lighthouseapp.com/projects/7212-thin
and major security issues directly to a team member (see COMMITTERS)