Toggle navigation
LeoSpring博客
主页
个人简介
归档
精华
标签
LeoSpring博客
博客页面
Redis调用Lua脚本
1、调用Lua脚本的语法: $ redis-cli –eval path/to/redis.lua KEYS[1] KEYS[2] , ARGV[1] ARGV[2] … –eval,告诉redis-cli读取并运行后面的lua脚本 path/to/redis.lua,是lua脚本的...
Posted by LeoSpring on September 28, 2018
Mysql 触发器和存储过程
1、首先建表: create table tababin( id int not null auto_increment, name varchar(100), constraint pk primary key(id) ) 2、拷贝一张相同的表: create table tab...
Posted by LeoSpring on September 28, 2018
Java远程调试
-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=n 程序启动的时候给jvm加上上面的参数。 然后就可以用Eclipse进行远程调试了。在调试的过程中对代码的修改会反映到程序的运行当中。确实方便了不少。
Posted by LeoSpring on September 28, 2018
← Newer Posts