public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
commit  ca716970ee03dc0ed94bda0e4dc83b8a0bf0cb9d
tree    9f1097cfd9fd31a67d9873e5540357471edf081c
parent  2176ea64e2ac15f2535c76ddf3a60046e39a112c parent  1f4be478303aab34181af828f1228d04e14f57dd
thin / TODO
100644 24 lines (21 sloc) 1.131 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
== 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
 * Apply patch: http://groups.google.com/group/thin-ruby/browse_thread/thread/c2e157f0792f6054/9cd8b6af27854d38#9cd8b6af27854d38
 * 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:
   http://blog.evanweaver.com/articles/2007/05/06/leak-proof-direct-heap-instrumentation-for-bleak_house/
 * 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]