Has anyone used Lua for web development?
If so, what was your experience of Lua vs using Perl/Ruby/Python/PHP/etc
|
Has anyone used Lua for web development? If so, what was your experience of Lua vs using Perl/Ruby/Python/PHP/etc |
|||||||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
There are quite a few web development topics at the Lua User's Wiki, see specifically the Network section of the Libraries and Bindings page for a list of low level and high level projects. For a general web framework in Lua, Kepler is the usual advice. It stands between any of several web servers (including Apache) and the application-specific code. The Kepler Project is also the source of a number of bindings to interesting libraries that were needed to make Kepler work. For a MVC framework on Kepler, there is Orbit. For an example of a complete wiki and document management system based on Kepler, see Sputnik which can be customized and extended into a number of content management domains. I used Kepler to provide remote access, monitor, and control of a PC-based embedded system, and had very little trouble getting it to do what was needed. That system has been sitting in a rack doing its thing for a couple of years now, without much further attention. There are also several complete web servers implemented in Lua, falling back to C only for bindings to the platform-specific socket implementation. |
|||
|
|
|
You can use Luvit, I have not used on production, but I can see a lot of fun doing it.
The first part of The Changelog podcast, gives the author introduction to Luvit http://thechangelog.com/post/23610112548/episode-0-8-0-lua-luvit-want-some-more-of-it-with-tim-ca |
|||
|
|
I've heard good things about the Kepler Project as a Lua web framework ... though I've never used it nor Lua personally. |
|||
|
|
|
Don't know if you're still looking for an answer, but this can be useful for others too. I have created a ISAPI module for IIS that used LUA for script processing. Yes, I created this from scratch. Basically, I created a stripped down version of PHP with my own filosofy in mind, but then in LUA. The ISAPI module could accept multiple requests and started separate threads to handle the requests. I think I had 8 concurrent threads but I'm not sure. IIS then started up to 4 of those ISAPI modules. The speed was fenomenal. I had much better results than with PHP. But when you start using databases (I implemented MySQL), the difference flats out. Web requests on PHP that take up to 300ms mostly take 290ms for database and 10ms for the rest. With my LUA system, I had < 291ms = 290ms for database and < 1ms for the rest with a similar request (I timed with microseconds :)). Of course, these timings are just an example. This LUA engine was created for another project that never got used as an end product sadly and I stopped working on it. Basically, I think that if you are looking for speed improvements, I don't think switching to any other scripting language will help much, I think optimizing things like database access is much more important. You can for example (that's what I also did then) create a shared component that caches database data in the way that it uses the most. Such a component is of course very project specific and should be ready to process a heavy load of data-requests. |
|||||
|
|
Lua is a perfectly viable choice for web development. You won't get the same ecosystem of niceties as Ruby, but people are definitely producing web apps with it. A very interesting framework for this task is Tir for Mongrel 2 |
|||
|
|
|
I've used it as a scripting language for certain parts of a website before. I usually use ASP.NET/C# which is obviously a compiled language (as in, there's a separate compilation step) and using Lua for certain things allowed me to update bits of logic without having to recompile the whole site. It doesn't make sense to do the entire website in Lua, though. Not because of any deficiency in the language itself, but simply because there's really no framework that would make it worthwhile. Also, I'm not sure that there would be much benefit in using Lua in a PHP/Python/etc website where update a .php (or whatever) file would be just as easy to update as a .lua file. |
|||
|
|