Skip to content
This repository was archived by the owner on Dec 2, 2018. It is now read-only.

Commit be76a23

Browse files
committed
Version bump.
This commit is the top of a series of commits that have done significant refactoring to rack-legacy. Some highlights: * By using PHP's built-in web server (as first suggested by @nazgu1) the performance is much better. In addition to no longer booting up PHP on every request (which saves a lot of time) it also allows PHP to cache things like database connection and code compiles. Just running a dummy PHP file (i.e. echo 'ok';) was *over 500 times faster*. * The CGI handling was refactored a bit using `childprocess` gem that is being used for the new PHP code. This greatly simplified the CGI code also. * The PHP module had support for serving up index.php if a directory was requested. This has been replaced with Rack::Legacy::Index which is more flexible and gets rid of the need for the rack-rewrite mess [some people were doing](http://stuff-things.net/2011/05/16/legacy-development-with-pow/)
1 parent 1ac6675 commit be76a23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rack-legacy.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'rack-legacy'
3-
s.version = '0.8.5'
3+
s.version = '0.9.0'
44
s.homepage = 'https://github.com/eric1234/rack-legacy'
55
s.author = 'Eric Anderson'
66
s.email = '[email protected]'

0 commit comments

Comments
 (0)