Showing posts with label Merb. Show all posts
Showing posts with label Merb. Show all posts

Tuesday, December 23, 2008

Merb and Rails unite in Rails3!

I see this as great news for the Ruby and Rails and Merb communities... what are your thoughts?

Yehuda Katz post is a great rundown:

http://weblog.rubyonrails.org/2008/12/23/merb-gets-merged-into-rails-3/comments/24239#comment-24239

http://yehudakatz.com/2008/12/23/rails-and-merb-merge/

http://rubyonrails.org/merb

Tuesday, October 28, 2008

Ezra Zygmuntowicz Tech Talk : Ruby, Merb, Rubinius

This talk is great. Tons of information if you're interested in Ruby, Merb, Rubinius, etc.

"Engine Yard co-founder Ezra Zygmuntowicz gave a Tech Talk on Monday at Google. He covered some of the open-source projects we’re working on at Engine Yard, including Merb and Rubinius."

http://blog.engineyard.com/2008/10/24/ezra-gives-google-tech-talk-on-merb-and-rubinius

Sunday, May 18, 2008

Awesome news!

Congrats to the Rubinius team! This is awesome news!

http://blog.fallingsnow.net/2008/05/17/rails-on-rubinius/

http://www.infoq.com/news/2008/05/rubinius-runs-rails

Tuesday, April 01, 2008

Rack :: A Ruby Webserver Interface

Over on the Ruby-lang list, there was a discussion which pointed me to Rack. Check it out:

Rack provides an minimal interface between webservers supporting Ruby and Ruby frameworks.
  • super simple API for writing web apps
  • single API to connect to mongrel, fast-cgi, webrick
  • based on python’s WSGI, which was a good thing for python

Found this intriguing...
  • using the mongrel handler we can get crazy concurrency
  • let’s have a look at this, using ab
    • %w(rubygems rack).each { |dep| require dep }
      app = lambda { |env| sleep(5); [200, {}, 'Oi!'] }
      Rack::Handler::Mongrel.run(app, :Port => 3000)
    • ab -c 100 -n 300 http://0.0.0.0:3000/
    • Benchmarking 0.0.0.0 (be patient)
      Completed 100 requests
      Completed 200 requests
      Finished 300 requests
      Concurrency Level: 100
      Time taken for tests: 15.232 seconds
      Complete requests: 300
      Failed requests: 0

http://rack.rubyforge.org/

http://macournoyer.wordpress.com/2007/12/14/rack-the-framework-framework/

http://yeahnah.org/files/rack-presentation-oct-07.pdf