使用phpstorm 编辑器,打开php 文件时,部分php文件写法,由于php版本不同语法标准的改变,经常出现一些 黄色警告。
打开phpstrom settings 设置,发现php language level 不能调整。
这里多半是由于php选项里,...
苏 demo
6年前 (2019-06-13)
2995℃
2喜欢
下载ik 中文分词插件,注意版本要和你的elasticsearch一致。
我这里es 版本为6.4.0
下载解压压缩包
cd ~cd downloadwget https://github.com/medcl/elasticsearch-analys...
苏 demo
6年前 (2019-06-05)
2939℃
1喜欢
查看文件夹大小
du -h –max-depth=1
查看文件夹大小及结果排序
du -h –max-depth=2|sort -n
du -hm –max-depth=2|sort -n
...
苏 demo
6年前 (2019-06-05)
2623℃
0喜欢
搜索当前目录下,超过100M大小的文件
find . -type f -size +100M
查看超过100M大小的文件及相关信息
find . -type f -size +100M -print0|xargs -0 ls -l
查看超...
苏 demo
6年前 (2019-06-04)
2779℃
0喜欢
启动elastic search的时候,提示 max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144] 错误。
修改/etc/sysctl.c...
苏 demo
6年前 (2019-05-29)
4660℃
2喜欢
启动elastic search的时候,提示 max number of threads [3818] for user [es] is too low, increase to at least [4096] 错误。
最大线程个数太低。修改配置文件etc/securi...
苏 demo
6年前 (2019-05-29)
3758℃
3喜欢
启动elastic search的时候,提示 max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536] 错误。
解决办法如下:
su...
苏 demo
6年前 (2019-05-29)
5476℃
5喜欢
在线访问地址:
http://t.cn/E98sgPP
下载地址:
Efficient-Pagination-Using-MySQL下载
转载请注明:苏demo的别样人生 » 网友分享的关于MYSQL高性能的分页查询讲解...
苏 demo
6年前 (2019-05-24)
2229℃
0喜欢
笛卡尔乘积是指在数学中,两个集合X和Y的笛卡尓积(Cartesian product),又称直积,表示为X×Y,第一个对象是X的成员而第二个对象是Y的所有可能有序对的其中一个成员
对任意集合A,根据定义有
AxΦ =Φ , Φ xA=Φ
php代码示例:
...
苏 demo
6年前 (2019-05-15)
3463℃
0喜欢
清理代码分支的时候,手贱,将一个功能分支删掉了(以为没用。。。)
后来回想,才想起来有部分改动还没有合并到主开发分支(心中是千万头神兽羊驼狂奔而过) 。。。
紧急处理git 误删(分明有意的),快速恢复代码。
1.根据git日志,查找commitID
...
苏 demo
6年前 (2019-05-14)
2183℃
0喜欢