And also we really, really need more people with experience of OpenResty, NGINX, Lua and LuaJIT.
Scripting Nginx with Lua (2012)
11–20 of 23 posts
Re: Scripting Nginx with Lua (2012)
#12I tend to always use OpenResty for a certain set of tasks these days. Notably, when it is mostly about lightweight data processing. I.e. an API that reads from a DB, transforms some fields and returns json, or a simple proxy server that slightly modifies the data (or just returns it). Or, performing simple calculations based on a few inputs. All this usually just requires a few lines of code and due to the nature of…
Re: Scripting Nginx with Lua (2012)
#13If you are interested in working on or with OpenResty then CloudFlare is hiring people in London and San Francisco. We employ agentzh and he works on OpenResty at CloudFlare. We use it _extensively_ throughout the CloudFlare stack. And also we really, really need more people with experience of OpenResty, NGINX, Lua and LuaJIT. https://www.cloudflare.com/join-our-team
Sometimes you just want to get a simple json endpoint with some dynamic data, and you can do that in 4 lines in lua+openresty.
Re: Scripting Nginx with Lua (2012)
#14We touch on our use of it a little bit towards the end of http://velocityconf.com/velocityeu2012/public/schedule/detai.... The last slide is still true- we're hiring! Ruby (remote possible), javascript, devops, and more. See http://www.lonelyplanet.com/jobs/
Re: Scripting Nginx with Lua (2012)
#15If you are interested in working on or with OpenResty then CloudFlare is hiring people in London and San Francisco. We employ agentzh and he works on OpenResty at CloudFlare. We use it _extensively_ throughout the CloudFlare stack. And also we really, really need more people with experience of OpenResty, NGINX, Lua and LuaJIT. https://www.cloudflare.com/join-our-team
Re: Scripting Nginx with Lua (2012)
#16Re: Scripting Nginx with Lua (2012)
#17Openresty (nginx+lua) is probably one of the most underrated technologies we have available nowadays. In my experience, every webapp can offload a ton of work(1) to openresty. The lua code is usually simpler and a lot faster that the equivalent code in the app.
(1) think caching, auth/acl, security filters, stats, logging
Re: Scripting Nginx with Lua (2012)
#18Re: Scripting Nginx with Lua (2012)
#19Re: Scripting Nginx with Lua (2012)
#20If you'd like to go a bit higher level without sacrificing performance, I suggest Lapis, a Lua/Moonscript framework built on top of OpenResty: http://leafo.net/lapis/ (not the author, just a fan!)