[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: scalability
- From: Alexander Gladysh <agladysh@...>
- Date: Wed, 29 Apr 2009 10:09:33 +0400
> I would love to hear more testimonials like this, if anyone else can share
> them.
Well, we're running Lua business logic on our 64-bit Linux servers. It
handles our workload quite decently.
We have our own poll-based network layer (right now we're
experimenting with moving to epoll). We rolled out our own specialized
Lua task system allowing us to run a large number of Lua tasks with
fixed number of worker OS threads.
We have 160+ KLOC written in Lua. We're quite happy with it. When
compared with our legacy code (running with PHP + Apache), our
specialized Lua system gives 4 to 10 times speedup on the same tasks
(and we're not even using things like LuaJIT yet). Also we get much
superior language features as an added bonus. :-)
Alexander.