public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
kevwil (author)
Wed Jan 16 19:21:07 -0800 2008
commit  1f4be478303aab34181af828f1228d04e14f57dd
tree    8a8fb31150cbd3efe1dc5d84614667f809f8d581
parent  d5b8163b27f3f667cc7c2c418e46e5e1e2e77418
thin / TODO
100644 22 lines (19 sloc) 0.896 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
== BUGS
 * Carl Mercier is experiencing weird stuff, response headers seems to be happened
   to the top of every HTML page in the browser ?wtf?
 * Thin uses more memory then Mongrel on some apps, investigate why
 
== FEATURES
 * IPv6 support (should be able to bind to ::1)
 
== TASKS
 * Provide precompiled win32 binaries in Gem
 * Load options from a config file
 * Create a Stats adapter to show server stats in the browser
 * Check for memory usage/leaks using dike or other.
 * Change benchmarking tests to use
   http://blog.evanweaver.com/files/doc/fauna/benchmark_unit/
 * Add a better god sample file in example/,
   maybe generate one w/ thin config and use this in replacement
   of mongrel_cluster to launch cluster at startup and all.
 * Port response writing to a C extension
 * Investigate http://rev.rubyforge.org/ (only Ruby 1.9)
 * Benchmark CGI and FastCGI too [Carlos Junior]