LWT (Lua Web Tools) 可让你使用 Lua 开发 Web 应用,并可直接在 Apache 上运行。LWT 的核心功能通过一个 Apache 的模块(mod_lwt)来提供。另外 LWT 提供可选的 Lua 模块用来访问数据库和缓存。
require "httpd"
require "cache"
require "cache.memcached"
-- Configure cache
local CACHE = cache.configure({ dr
今天闲来没事,学习了下lua,发现lua是一门很好上手的语言,核心很紧凑,而扩展库很多,可以支持socket,多线程,图形编程等。可惜国内的lua社区并不火,但好在有不少前辈已经为我们摸索出了一条康庄大道,并且博客资源很丰富,质量也不错。
Lua是一个嵌入式的脚本语言,它不仅可以单独使用还能与其它语言混合调用。
Lua
LuaJIT is a Just-In-Time Compiler for the Lua* programming language.
LuaJIT is Copyright © 2005-2011 Mike Pall. LuaJIT is open source software, released under the MIT license.
* Lua is a powerful, dynamic and light-weight programming language designed for extending applications. Lua is also
Lua 5.1 参考手册
by Roberto Ierusalimschy, Luiz Henrique de Figueiredo, Waldemar Celes
云风 译 www.codingnow.com
Copyright © 2006 Lua.org, PUC-Rio. All rights reserved.
1 - 介绍
Lua 是一个扩展式程序设计语言,它被设计成支持通用的过程式编程,并有相关数据描述的设施。 Lua 也能对面向对象编
最新评论