在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):SnarkyClark/luafcgid开源软件地址(OpenSource Url):https://github.com/SnarkyClark/luafcgid开源编程语言(OpenSource Language):C 79.3%开源软件介绍(OpenSource Introduction):% LuaFCGId README % % October 7th, 2011 Summaryluafcgid is a multithreaded FastCGI server that runs under BSD/Linux. It manages a number of independent, persistent Lua states, that are then loaded with Lua scripts from the file system. These scripts are loaded/initialized on demand, and held in memory for as long as possible. The Lua scripts are also allowed to interface with the FastCGI libraries: thus providing an extremely fast, streamlined and lightweight platform from which to develop web-centric apps in Lua. SupportThere is a support forum available at http://forum.luahub.com/index.php?board=17.0 LicenseSee the LICENSE file included with the source code TestingAll development testing is done with the following server platform: Hardware:Pentium 4 3.2 Ghz Intel MB chipset Intel Pro+ 1GB ethernet 256MB RAM Software:
NOTE: Further testing may be done on other platforms when available. Volunteers welcome. Prerequisites
InstallationSee the INSTALL file for your platform. If you do not see a INSTALL file for your platform, then you can try to use the generic build by running:
You may have to modify the Makefile created by the configure script, and will have to install manually. Any platform or distribution-specific Makefiles and initd/rc.d scripts are always welcome and can be submitted by github pull request, or to the support forum: http://forum.luahub.com/index.php?board=17.0 Webserver (nginx):Add the following lines to your server{} section:
NOTE: make sure your root directive is set correctly Designluafcgid spawns and manages a number of worker threads that each contain an isolated blocking accept loop. The FastCGI libraries provide a connect queue for each worker thread so that transient load spikes can be handled with a minimum of fuss.
Lua is then introduced into the picture by created a shared Lua state for each Lua script that is requested. A script can also be loaded into more then one state if heavily requested. All scripts - including duplicates (clones) - are completely isolated from each other. After a state is initialized and loaded with a script, it is kept in memory for as long as possible. This allows for persistence across HTTP requests. Each Lua VM is run within a worker thread as needed. The use of on-demand clones allows for multiple workers to run the same popular script. There is a configurable limit to the total number of Lua states that luafcgid will maintain. When this limit is reached, popularity and aging are used to decide which states to flush and reload with a new script. Global housekeeping is run on a regular cycle (heartbeat) independent of requests. Current tasks include flushing any loaded scripts that have been modified. More tasks may be added in the future. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论