摘要: 发现查询太慢了,优化前查询要9秒,优化后只要1秒。 sql是根据访客ID进行分组,然后才进行统计数量。 说明记录中访客ID是有重复出现的情况,要合并成一条,去除重复数,所以可以考虑用去重关键字DISTINCT,然后再用统计函数COUNT进行计算。 阅读全文
posted @ 2017-09-14 10:57 lindaZ 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 1.Open IDEA,choose "New-->Project" 2.Choose "Spring Initializr" 3. Choose java 1.7 version,then next 4. Choose "Web" 5. Fill out the project name,and 阅读全文
posted @ 2017-03-13 16:05 lindaZ 阅读(50287) 评论(1) 推荐(3) 编辑
摘要: 1.创建一个文件夹,名为"清除页面广告插件" 2.在文件夹内创建"manifest.json"文件, 3.文件夹内添加一个"xx.jpg"图片 4.例如页面右上角广告,找出它的id,设置为不可见 代码: 5.打开chrome浏览器,选择"更多工具"-->"扩展程序",打开相应页面:选择"加载已扩展程 阅读全文
posted @ 2017-03-06 18:03 lindaZ 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 1.git clone xxx项目git地址(eg:git@192.168.122.141:xdb-service/xdb-service.git) 2.git pull 拉取项目/git pull --rebase 3.git push 提交代码到远程服务器 /git push origin 分支 阅读全文
posted @ 2017-01-04 18:17 lindaZ 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 参考:https://segmentfault.com/q/1010000004130362 阅读全文
posted @ 2016-12-20 16:24 lindaZ 阅读(1372) 评论(0) 推荐(0) 编辑
摘要: \\10.10.1.14\Share\07 日志\tomcatlogbackup\157\tomcat\logs 阅读全文
posted @ 2016-11-23 13:56 lindaZ 阅读(218) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/c1481118216/article/details/51773674 阅读全文
posted @ 2016-11-09 09:58 lindaZ 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 点击"转让"标签,可以获取其同行的任意列数据。 阅读全文
posted @ 2016-10-26 16:58 lindaZ 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 方法一: 打开cmd,用"mysql -u root -p;"命令进入mysql, 输入命令:show variables like "max_connections" 显示最大连接数 更改最大连接数 : set global max_connections = 5000 方法二: 在my.ini加 阅读全文
posted @ 2016-10-09 14:40 lindaZ 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 如图,新建的maven项目不能新建package 这是因为java是普通的文件夹,要设置为 现在就可以了 博客原链接:http://blog.csdn.net/qq_24949727/article/details/52097838 阅读全文
posted @ 2016-09-02 10:33 lindaZ 阅读(2170) 评论(0) 推荐(0) 编辑