Redis 脚本 Redis 脚本使用 Lua 解释器来执行脚本。 Reids 2.6 版本通过内嵌支持 Lua 环境。执行脚本的常用命令为 EVAL。 语法 Eval 命令的基本语法如下: redis 127.0.0.1:6379> EVAL script numkeys key [key ... ...
分类:
其他好文 时间:
2016-09-02 13:29:01
阅读次数:
148
环境变量什么的都不说了,网上大量; 此处记录直接编译部分,如果你是cpp工程,那么编译就非常明了了,直接cd到android工程,然后运行build_native.py,需要什么参数直接填上就好,耐心等待吧; 但是,相信很多同志都在纠结于cocos2dx-3.x之后的lua工程,编译安卓的时候,进项 ...
分类:
移动开发 时间:
2016-08-10 12:25:18
阅读次数:
179
什么是环境? http://www.lua.org/manual/5.1/manual.html#2.9 Besides metatables, objects of types thread, function, and userdata have another table associated... ...
分类:
其他好文 时间:
2016-08-07 23:13:51
阅读次数:
277
这段代码把字符串中的key=value字符串全部转换成XML格式<key>value</key> 在这个例子中,C++程序通过调用lua_pushstring把C字符串压入栈顶,lua_setglobal的作用是把栈顶的数据传到Lua环境中作为全局变量。 执行代码完成后,使用lua_getgloba ...
分类:
其他好文 时间:
2016-07-28 16:16:31
阅读次数:
185
Redis 脚本使用 Lua 解释器来执行脚本。 Reids 2.6 版本通过内嵌支持 Lua 环境。执行脚本的常用命令为 EVAL。 语法 Eval 命令的基本语法如下: 实例 以下实例演示了 redis 脚本工作过程: Redis 脚本命令 下表列出了 redis 脚本常用命令: ...
分类:
其他好文 时间:
2016-07-08 00:14:48
阅读次数:
263
系统环境#uname-r3.10.0-229.el7.x86_64#cat/etc/redhat-releaseCentOSLinuxrelease7.1.1503(Core)所需模块pcreftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/luajithttp://luajit.org/download.htmlngx_devel_kithttps://github.com/simpl/ngx_devel_kit/tagslua_ng..
分类:
其他好文 时间:
2016-01-28 19:34:46
阅读次数:
287
function foo() print(g or "'g' is not defined!")endfoo()env = { g = 100, print = print }setfenv(foo, env) --设置foo的环境为表envfoo()print(g or "'g' is not d...
分类:
其他好文 时间:
2015-11-02 13:36:55
阅读次数:
265
将c++ 封装成lua调用时,显示一下错误:PYTHON_BIN not defined, use current python.generating userconf.ini...Generating bindings for cocos2dx_TextLoader...Traceback (mo...
分类:
其他好文 时间:
2015-10-12 00:43:08
阅读次数:
2026
第一层:纯C环境下,把C函数注册进Lua环境a.lua 文件print(foo(99))a.c 文件#include #include #include int foo(lua_State *L){ int n = lua_tonumber(L, 1); lua_pushnumber(L, n .....
分类:
编程语言 时间:
2015-09-14 22:28:44
阅读次数:
290
lua的官方网址: http://www.lua.org/start.html 在lua官网中有介绍linux下lua环境的安装方法如下: 如果遇到问题,看下载文件中的readme文件: README文件内容如下: 用浏览器打开readme.html文件,你会看到很详...
分类:
其他好文 时间:
2015-09-10 21:18:40
阅读次数:
656