mod_pLua 0.52發佈 Apache HTTP伺服器的Lua模組

來源:互聯網
上載者:User
關鍵字 Apache HTTP伺服器 mod_pLua Lua模組

mod_pLua 是一款用於Lua的Web開發應用程式的HTTP://www.aliyun.com/zixun/aggregation/14417.html">Apache HTTP伺服器2.x模組。 你可以用兩種不同的方式使用Lua腳本:嵌入式Lua腳本,或CGI風格介面的純Lua腳本。

嵌入式Lua腳本:

<html> <body> <? get = parseGet(); --# Parse any GET data passed on to us. name = get['name'] or "unknown person"; x = (x or 0) + 1; --# Increment a persistent, global variable x. ? > <h1>Hello, <?=name?>!</h1> <?if (x > 3) then?> X is > 3! <?end?> </body></html>

純Lua腳本:

setContentType("text/html");
local vars = parseGet();
local user = vars["name"] or "unknown person";
print("Hello, ", user);

mod_pLua 能夠預編譯所有的腳本和緩存編譯的二進位代碼,在使用者訪問的時候執行並返回,允許任何現代伺服器上成千上萬的每分鐘的請求。 mod_pLua支援傳統的Lua解譯器,以及Windows和UNIX平臺上的LuaJIT。 如果您的Web伺服器支援它,mod_pLua通過持續的資料庫連接APR_DBD和mod_dbd dbopen()Lua函數處理。

mod_pLua 0.52該版本修復了一些警告。 增加了設置和獲取cookie的值setcookie()和getCookie()。

軟體資訊:HTTP://sourceforge.net/p/modplua/wiki/Home/

下載位址:HTTP://sourceforge.net/projects/modplua/files/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.