Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Ruby (http://www.velocityreviews.com/forums/f66-ruby.html)
-   -   A standard like WSGI for Ruby? (http://www.velocityreviews.com/forums/t833759-a-standard-like-wsgi-for-ruby.html)

Phil Tomson 09-22-2006 01:10 AM

A standard like WSGI for Ruby?
 
There's a perennial discussion on Reddit about the strengths of Python vs Ruby.

there was mention of WSGI as a web-app standard on Python. here's the quote:

"That's the point, it is a language-wide standard that has been
adopted by the community officialy. It makes it trivial to make a web
application that supports WSGI to run on any server that runs on WSGI.
In Ruby, you look at something like Mongrel and it has to explicitly
add Rails, Camping, Nitro support. In Python, if a server is WSGI,
anything that supports WSGI will run on it. Some frameworks, like
Pylons, have incorporated it throughout the stack to make it trivial
to swap put template systems, ORMs, you name it. Rubyists would do
best to check it out; while it is a very simple standard, it is very
empowering to the web development community. That's why you see so
many frameworks in Python, because frankly they are rather easy to put
together."

Could Ruby benefit from an internal standard like this?


Devin Mullins 09-22-2006 02:03 AM

Re: A standard like WSGI for Ruby?
 
Phil Tomson wrote:
> In Ruby, you look at something like Mongrel and it has to explicitly
> add Rails, Camping, Nitro support. In Python, if a server is WSGI,
> anything that supports WSGI will run on it.

Well, part of that is mindshare. Consider that the Nitro, IOWA authors
wrote the Mongrel adapters themselves (for the most part). In this case
you could call the Mongrel API the Ruby version of WSGI.

> Some frameworks, like
> Pylons, have incorporated it throughout the stack to make it trivial
> to swap put template systems, ORMs, you name it.

Yeah, that's my (limited) understanding of where WSGI shines. In Ruby,
OTOH, there need to exist m*n adapters between m view libraries and n
controller libraries. I dunno... big whoop. The adapters are, like, 3
lines of code, and there isn't a heck of a lot of demand for Amrita (as
in, not erb) as *is*.

> That's why you see so
> many frameworks in Python, because frankly they are rather easy to put
> together.

Not true. WSGI arose *because* of the so many frameworks, and the
pro-Rails argument that "we don't have to waste time choosing a stack."

> Could Ruby benefit from an internal standard like this?

Muh... I dunno. No?

Devin


khaines@enigo.com 09-22-2006 05:44 AM

Re: A standard like WSGI for Ruby?
 
On Fri, 22 Sep 2006, Devin Mullins wrote:

> Well, part of that is mindshare. Consider that the Nitro, IOWA authors wrote
> the Mongrel adapters themselves (for the most part). In this case you could
> call the Mongrel API the Ruby version of WSGI.


At the end of the day, the IOWA/Mongrel integration is a trivial thing,
and something like WSGI could hardly make it easier than it already is
without imposing design decisions on me.

Here it is:

def process(req, res)
Thread.current[:worker] = true
unless handle_file(req, res)
request = Iowa::Request::Mongrel.new(req)
response = Iowa.handleConnection request
::Iowa::InlineClient.new(request,response).print(r es)
end
end

That's the core of it. Not hard. IOWA already has an established
precedent regarding what a request object looks like, so with something
like WSGI, I'd either have to realign the request object expectation to
whatever it provided, or I'd have to write a simple Iowa::Request::WSGI
just like the Iowa::Request::Mongrel to take the request and apply it to
the shape the application expects. And it's really no big deal.

Maybe I'm failing to understand what WSGI really is because right now I
don't see how it would help me.


Kirk Haines


Logan Capaldo 09-22-2006 01:43 PM

Re: A standard like WSGI for Ruby?
 
On Fri, Sep 22, 2006 at 02:44:32PM +0900, khaines@enigo.com wrote:
> On Fri, 22 Sep 2006, Devin Mullins wrote:
>
> >Well, part of that is mindshare. Consider that the Nitro, IOWA authors
> >wrote the Mongrel adapters themselves (for the most part). In this case
> >you could call the Mongrel API the Ruby version of WSGI.

>
> At the end of the day, the IOWA/Mongrel integration is a trivial thing,
> and something like WSGI could hardly make it easier than it already is
> without imposing design decisions on me.
>

I think that was exactly Devin's point. (Is that it's so trivial, Ruby
doesn't need such a standard.)


khaines@enigo.com 09-22-2006 01:46 PM

Re: A standard like WSGI for Ruby?
 
On Fri, 22 Sep 2006, Logan Capaldo wrote:

>> At the end of the day, the IOWA/Mongrel integration is a trivial thing,
>> and something like WSGI could hardly make it easier than it already is
>> without imposing design decisions on me.
>>

> I think that was exactly Devin's point. (Is that it's so trivial, Ruby
> doesn't need such a standard.)


Yeah. I was trying to support his point with my example. :)


Kirk Haines


Logan Capaldo 09-22-2006 01:54 PM

Re: A standard like WSGI for Ruby?
 
On Fri, Sep 22, 2006 at 10:46:32PM +0900, khaines@enigo.com wrote:
> On Fri, 22 Sep 2006, Logan Capaldo wrote:
>
> >>At the end of the day, the IOWA/Mongrel integration is a trivial thing,
> >>and something like WSGI could hardly make it easier than it already is
> >>without imposing design decisions on me.
> >>

> >I think that was exactly Devin's point. (Is that it's so trivial, Ruby
> >doesn't need such a standard.)

>
> Yeah. I was trying to support his point with my example. :)
>

I'm glad this whole thread is people agreeing!
>
> Kirk Haines



M. Edward (Ed) Borasky 09-22-2006 02:06 PM

Re: A standard like WSGI for Ruby?
 
Logan Capaldo wrote:
> On Fri, Sep 22, 2006 at 10:46:32PM +0900, khaines@enigo.com wrote:
>> On Fri, 22 Sep 2006, Logan Capaldo wrote:
>>
>>>> At the end of the day, the IOWA/Mongrel integration is a trivial thing,
>>>> and something like WSGI could hardly make it easier than it already is
>>>> without imposing design decisions on me.
>>>>
>>> I think that was exactly Devin's point. (Is that it's so trivial, Ruby
>>> doesn't need such a standard.)

>> Yeah. I was trying to support his point with my example. :)
>>

> I'm glad this whole thread is people agreeing!
>> Kirk Haines

>
>

Yes ... I agree

Hey -- a new Rejected Ruby Book Title!!

Ruby Don't Need No Stinkin' WSGI



All times are GMT. The time now is 04:45 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57