Questions tagged [mongrel2]

Mongrel2 is an application, language, and network architecture agnostic web server that focuses on web applications using modern browser technologies.

Mongrel2 is an application-, language-, and network architecture- agnostic web server that focuses on web applications using modern browser technologies.

Mongrel2 supports 17 languages and platforms, HTTP, Flash sockets, WebSockets, Long Polling, and many ways to deploy and hack on it. It's also operations-friendly: You can automate and control nearly every aspect of a Mongrel2 install from any of the supported languages. It's also open-source: you can find it on GitHub, and its homepage is at mongrel2.org, which also hosts the manual.

What makes Mongrel2 special is how it satisfies HTTP requests in a language agnostic and asynchronous way using a simple messaging protocol to talk to applications; not just serve files. Mongrel2 is designed to be incredibly easy to automatically manage as part of your infrastructure. Other web servers do some of the things Mongrel2 does, but they either do them in a disorganized way, or they don't do all of them at once. Plenty of language-specific web servers like Node.js and Jetty have asynchronous operation, but they’re not language agnostic. Other web servers will let you talk to any language as a backend, but they insist on using HTTP proxying or FastCGI, which is not friendly to asynchronous operations.

18 questions
0
votes
1 answer

Is Lua (Luvit) the same as Mongrel2?

I'm confused, is Luvit the sames as Mongrel2? It appears Luvit is similar to Node for JavaScript but the concept seems to be the exact same as Mongrel2. If they are not the same, can someone highlight the differences in implementation.
nickb
  • 9,140
  • 11
  • 39
  • 48
0
votes
1 answer

Task farm pattern and mongrel2

I am thinking of using mongrel2 for handling Web request for a service. For the backend, I want to use a Task farm pattern, using the C bindings to zeromq. After reading the mongrel2 manual though, it is not clear how i can implement this, since the…
Homunculus Reticulli
  • 65,167
  • 81
  • 216
  • 341
-1
votes
1 answer

Web App technologies choice

I am currently writing user interface in ember.js and need some help in server-side decision concerning transfer technologi and server-side script. App is planned to simply wrap calling of few server-side script with adding some database suggar for…
user978734
  • 303
  • 4
  • 12
1
2